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