コード例 #1
0
ファイル: PlayerInput.cs プロジェクト: Gayo/Gayo-CAROT
 public VirtualButton(PlayerInput input, FetchState fetcher)
 {
     this.input = input;
     this.fetcher = fetcher;
 }
コード例 #2
0
ファイル: MGame.cs プロジェクト: Gayo/Gayo-CAROT
 public MGame()
 {
     player1 = new PlayerInput(PlayerIndex.One);
 }
コード例 #3
0
ファイル: RpgController.cs プロジェクト: zeromus/carotengine
 public RpgController(PlayerInput playerInput)
 {
     this.playerInput = playerInput;
     if (RpgController.rpg == null)
         RpgController.rpg = this;
 }