Beispiel #1
0
 public DriveController(
     GameWorld world,
     IControllerType controllerType,
     Camera camera) : base(camera)
 {
     this.controllerType = controllerType;
 }
Beispiel #2
0
 public Jeep(GameWorld world) : base(-1, world)
 {
     jeepControllerType = new JeepControllerType();
     driveController    = new DriveController(world, jeepControllerType, world.Camera);
 }