24 lines
423 B
C#
24 lines
423 B
C#
![]() |
using System.Collections.Generic;
|
|||
|
namespace G
|
|||
|
{
|
|||
|
|
|||
|
public class Stat_VertigoAction : Stat_BaseAction
|
|||
|
{
|
|||
|
public Stat_VertigoAction(Stat_StateManager statMgr)
|
|||
|
: base(statMgr)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public override bool Enter(Dictionary<string, object> param, bool clearDelegates = false)
|
|||
|
{
|
|||
|
base.Enter(param, clearDelegates);
|
|||
|
return true;
|
|||
|
}
|
|||
|
|
|||
|
public override bool CanTransition(enStat stat)
|
|||
|
{
|
|||
|
return true;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|