Exemple #1
0
 public NPC(string type, string backstory, TwoDPoint position, int health, string name, string status)
 {
     npcType      = type;
     npcBackstory = backstory;
     npcPosition  = position;
     npcHP        = health;
     npcName      = name;
     npcStatus    = status;
 }
Exemple #2
0
 public NPC(string type, string backstory, TwoDPoint position)
 {
     npcType      = type;
     npcBackstory = backstory;
     npcPosition  = position;
 }
Exemple #3
0
 public Player(int ammo, int health, TwoDPoint position)
 {
     playerAmmo     = ammo;
     playerHP       = health;
     playerPosition = position;
 }