Exemplo n.º 1
0
 public InControlPlayerInputSource(PlayerConfig config)
 {
     this.config = config;
     TapDetector = new TapInputDetector();
     // TODO(james7132): Make this configurable
     controllerMapping = new PlayerControllerMapping();
 }
Exemplo n.º 2
0
 public TapPlayerInputSource(IInputSource <PlayerInput> baseInput)
 {
     TapDetector      = new TapInputDetector();
     _baseInputSource = baseInput;
 }