예제 #1
0
        //WPF.PlayerWinFormUserControl movementHanler;

        public Player(String name, int startCountryID, genderType g)
        {
            this.name        = name;
            this.gender      = g;
            currentCountryId = startCountryID;
            notTravelDay     = 0;
        }
예제 #2
0
 public personObject(amountType amount, personType guf, timeType time, genderType gender, string word)
 {
     this.Amount = amount;
     this.Guf    = guf;
     this.Time   = time;
     this.Gender = gender;
     this.Word   = word;
 }
예제 #3
0
 public string getData(string name, genderType p_gender)
 {
     this.gender = p_gender;
     this.name   = name;
     return(name + " is a " + p_gender);
 }