public npcactionCell getCell(int key) { npcactionCell t = null; this.AllData.TryGetValue(key.ToString(), out t); return(t); }
public npcactionCell getCell(string key) { npcactionCell t = null; this.AllData.TryGetValue(key, out t); return(t); }