Beispiel #1
0
 public Player(player_states state)
 {
     _state = state;
     gold   = 0;
 }
Beispiel #2
0
 public Player()
 {
     _state = player_states.NEUTRAL;
     setInitialAttributes();
     gold = 10;
 }