コード例 #1
0
 public TextAdventure()
 {
     _inventory    = new TextAdventureInventory();
     _stateMachine = new StateMachine <TextAdventureState <TId>, TId>(DefaultState);
     States        = new List <TextAdventureState <TId> >();
 }
コード例 #2
0
ファイル: TextAdventure.cs プロジェクト: TheCalPal/ExoKomodo
 public TextAdventure()
 {
     _inventory    = new TextAdventureInventory();
     _stateMachine = new StateMachine <TextAdventureState>();
     States        = new List <TextAdventureState>();
 }