This repository has been archived on 2024-06-21. You can view files and clone it, but cannot push or open issues or pull requests.
CDSAE3/CDSAE3_Lian_Lian_Kan/Forms/Interface/IBeSelected.cs

19 lines
560 B
C#
Raw Permalink Normal View History

2024-03-22 09:03:01 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2024-04-18 00:38:59 +00:00
namespace CDSAE3_Lian_Lian_Kan.Forms.Interface
2024-03-22 09:03:01 +00:00
{
2024-03-29 06:18:38 +00:00
public interface IGameControl
2024-03-22 09:03:01 +00:00
{
public void Selected_Handler(Single_Block sender, SelectedEventArgs e);
2024-03-29 06:18:38 +00:00
public void Exchange_Handler(object? sender, EventArgs e);
public void Search_Handler(object? sender, SearchEventArgs e);
}
2024-04-18 00:38:59 +00:00
public class SearchEventArgs : EventArgs
2024-03-29 06:18:38 +00:00
{
public bool set_search { get; set; } = false;//true : search
2024-03-22 09:03:01 +00:00
}
}