示例#1
0
		public GameManager(DmGame game, InputHandler inputHandler, IGameRenderer renderer)
		{
			this.game = game;
			this.inputHandler = inputHandler;
			this.renderer = renderer;
		}
示例#2
0
		public InputAction(DmGame game)
		{
			this.Game = game;
		}
示例#3
0
		public MovementAction(DmGame game, Coordinate direction)
		{
			this.game = game;
			this.direction = direction;
		}
示例#4
0
		public DevAction(DmGame game, string command) : base(game)
		{
			this.command = command.ToLower();
		}
示例#5
0
		public QuitAction(DmGame game) : base(game)
		{
		}