コード例 #1
0
ファイル: Bell.cs プロジェクト: Slaw145/State
 public void setState(BellState state)
 {
     currentState = state;
 }
コード例 #2
0
ファイル: Bell.cs プロジェクト: Slaw145/State
 public Bell()
 {
     currentState = new BellRingingState();
 }