mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-12 22:44:35 +01:00
18 lines
318 B
C#
18 lines
318 B
C#
namespace MoleMole
|
|
{
|
|
public class LDWaitTransitionEnd : BaseLDEvent
|
|
{
|
|
public override void OnEvent(BaseEvent evt)
|
|
{
|
|
if (evt is EvtLevelState)
|
|
{
|
|
EvtLevelState evtLevelState = evt as EvtLevelState;
|
|
if (evtLevelState.state == EvtLevelState.State.ExitTransition)
|
|
{
|
|
Done();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|