예제 #1
0
 public ProfilePlayer(float speedCar, float forceCar, int crimeRate, IAnalyticTools analyticTools)
 {
     AnalyticTools  = analyticTools;
     CurrentState   = new SubscriptionProperty <GameState>();
     CurrentCar     = new Car(speedCar, forceCar, crimeRate);
     InventoryModel = new InventoryModel();
 }
예제 #2
0
 public ProfilePlayer(float speedCar, IAnalyticTools analyticTools)
 {
     CurrentState  = new SubscriptionProperty <GameState>();
     CurrentCar    = new Car(speedCar);
     AnalyticTools = analyticTools;
 }