Ejemplo n.º 1
0
 void Awake()
 {
     if (Instance == null)
     {
         Instance = this;
     }
     _equipmentGenerator = new EquipmentGenerator();
 }
Ejemplo n.º 2
0
 public void Destroy()
 {
     Destroy(this.gameObject);
     LootManager.Instance = null;
 }
Ejemplo n.º 3
0
 public HomeController(IMapper mapper, ILootManager lootManager)
 {
     _mapper      = mapper;
     _lootManager = lootManager;
 }