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
|
|
|
|
{
|
|
|
|
|
public class AddScoreArgs : EventArgs
|
|
|
|
|
{
|
|
|
|
|
public int score { get; set; }
|
|
|
|
|
}
|
2024-04-18 08:38:59 +08:00
|
|
|
|
public class FinishArgs : EventArgs
|
2024-03-22 17:03:01 +08:00
|
|
|
|
{
|
|
|
|
|
public enum Finish_Type
|
|
|
|
|
{
|
|
|
|
|
All_done = 0,
|
|
|
|
|
Time_out = 1
|
|
|
|
|
}
|
|
|
|
|
public Finish_Type finish_Type { get; set; }
|
|
|
|
|
}
|
2024-04-18 08:38:59 +08:00
|
|
|
|
public interface IGameMode : IThemeChangeable
|
2024-03-22 17:03:01 +08:00
|
|
|
|
{
|
|
|
|
|
public void De_pause(object sender, EventArgs e);
|
|
|
|
|
public void Score_Add(object sender, AddScoreArgs e);
|
|
|
|
|
public void Finished_Handler(object sender, FinishArgs e);
|
|
|
|
|
}
|
|
|
|
|
}
|