Ejemplo n.º 1
0
 public PlayerEntity(string username) : base()
 {
     Username = username;
     Food = 20;
     Inventory = new InventoryWindow();
     Abilities = new PlayerAbilities(this);
     SelectedSlot = InventoryWindow.HotbarIndex;
 }
Ejemplo n.º 2
0
 public PlayerEntity(string username) : base()
 {
     Username     = username;
     Food         = 20;
     Inventory    = new InventoryWindow();
     Abilities    = new PlayerAbilities(this);
     SelectedSlot = InventoryWindow.HotbarIndex;
 }