コード例 #1
0
ファイル: GameManager.cs プロジェクト: Koneke/DeepMagic
		public GameManager(DmGame game, InputHandler inputHandler, IGameRenderer renderer)
		{
			this.game = game;
			this.inputHandler = inputHandler;
			this.renderer = renderer;
		}
コード例 #2
0
ファイル: InputAction.cs プロジェクト: Koneke/DeepMagic
		public InputAction(DmGame game)
		{
			this.Game = game;
		}
コード例 #3
0
ファイル: MovementAction.cs プロジェクト: Koneke/DeepMagic
		public MovementAction(DmGame game, Coordinate direction)
		{
			this.game = game;
			this.direction = direction;
		}
コード例 #4
0
ファイル: DevAction.cs プロジェクト: Koneke/DeepMagic
		public DevAction(DmGame game, string command) : base(game)
		{
			this.command = command.ToLower();
		}
コード例 #5
0
ファイル: QuitAction.cs プロジェクト: Koneke/DeepMagic
		public QuitAction(DmGame game) : base(game)
		{
		}