Пример #1
0
 public Player()
 {
     // this is a merge test.
     this.sName    = "Player";
     this.dBalance = InitialValuesAccessor.getPlayerStartingBalance(true);
     this.location = 0;
 }
Пример #2
0
 public Player(string sName)
 {
     this.sName    = sName;
     this.dBalance = InitialValuesAccessor.getPlayerStartingBalance();
     this.location = 0;
 }
Пример #3
0
        public Banker()
        {
            this.setName("Banker");

            this.setBalance(InitialValuesAccessor.getBankerStartingBalance());
        }