Beispiel #1
0
 public CameraComponent(Game game, WorldComponent world, InputComponent input) : base(game)
 {
     this.world = world;
     this.input = input;
 }
Beispiel #2
0
 public WorldComponent(Game game, InputComponent input) : base(game)
 {
     World = new World(input);
 }