mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-16 16:34:41 +01:00
23 lines
329 B
C#
23 lines
329 B
C#
namespace MoleMole
|
|
{
|
|
public class EvtTutorialState : BaseLevelEvent
|
|
{
|
|
public enum State
|
|
{
|
|
Start = 0
|
|
}
|
|
|
|
public readonly State state;
|
|
|
|
public EvtTutorialState(State state)
|
|
{
|
|
this.state = state;
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return string.Format("level state: {0}", state.ToString());
|
|
}
|
|
}
|
|
}
|