コード例 #1
0
 public CameraComponent(Game game, WorldComponent world, InputComponent input) : base(game)
 {
     this.world = world;
     this.input = input;
 }
コード例 #2
0
ファイル: WorldComponent.cs プロジェクト: panda2u/OctoAwesome
 public WorldComponent(Game game, InputComponent input) : base(game)
 {
     World = new World(input);
 }