Esempio n. 1
0
    public PersistentFsm()
        : base()
    {
        onlyInstance = this;

        Start();

        SwapState(new IdleState(this));
    }
Esempio n. 2
0
 public IdleState(PersistentFsm parent)
     : base(parent)
 {
 }