コード例 #1
0
 public InputCommand(string id, HumanInputState state, SVector2 position)
 {
     this.id = id;
     this.state = state;
     this.position = position;
 }
コード例 #2
0
 public InputCommand(string id, HumanInputState state)
 {
     this.id = id;
     this.state = state;
     this.position = SVector2.zero;
 }