mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-12 22:44:35 +01:00
24 lines
345 B
C#
24 lines
345 B
C#
namespace MoleMole
|
|
{
|
|
public class EvtLoadingState : BaseLevelEvent
|
|
{
|
|
public enum State
|
|
{
|
|
Start = 0,
|
|
Destroy = 1
|
|
}
|
|
|
|
public readonly State state;
|
|
|
|
public EvtLoadingState(State state)
|
|
{
|
|
this.state = state;
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return string.Format("Loading state: {0}", state.ToString());
|
|
}
|
|
}
|
|
}
|