// Token: 0x06000129 RID: 297 RVA: 0x0000610C File Offset: 0x0000450C public API(Cuenta cuenta, ManejadorAcciones manejar_acciones) { this.inventaire = new InventaireApi(cuenta, manejar_acciones); this.personnage = new PersonnageApi(cuenta); this.map = new MapApi(cuenta, manejar_acciones); this.npc = new NpcAPI(cuenta, manejar_acciones); this.combat = new CombatApi(cuenta, manejar_acciones); }
// Token: 0x0600012C RID: 300 RVA: 0x000061A4 File Offset: 0x000045A4 protected virtual void Dispose(bool disposing) { bool flag = !this.disposed; if (flag) { if (disposing) { this.inventaire.Dispose(); this.personnage.Dispose(); this.map.Dispose(); this.npc.Dispose(); this.combat.Dispose(); } this.inventaire = null; this.personnage = null; this.map = null; this.npc = null; this.combat = null; this.disposed = true; } }