Ejemplo n.º 1
0
 public Npc(int id, string name, HomeCountry country, string description, int health, int lives)
     : base(id, name, country)
 {
     Id          = id;
     Name        = name;
     Country     = country;
     Description = description;
     Health      = health;
     Lives       = lives;
 }
Ejemplo n.º 2
0
 public Citizen(
     int id,
     string name,
     HomeCountry country,
     string description,
     int health,
     int lives,
     List <string> messages)
     : base(id, name, country, description, health, lives)
 {
     Messages = messages;
 }
Ejemplo n.º 3
0
 public Enemy(
     int id,
     string name,
     HomeCountry country,
     string description,
     int health,
     int lives,
     List <string> messages,
     Weapon currentWeapons,
     Weapon currentWeapon)
     : base(id, name, country, description, health, lives)
 {
     Messages      = messages;
     CurrentWeapon = currentWeapon;
     CurrentWeapon = currentWeapons;
 }
Ejemplo n.º 4
0
 public Task <HomeCountry> UpdateHomeCountry(HomeCountry homeCountry)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 5
0
 public Character(int id, string name, HomeCountry country)
 {
     _name    = name;
     _country = country;
 }