public void Detach(CGItem cgItem) { if (_mplaylist != null && _cgManager != null) { _cgManager.Detach(cgItem); } }
public void Detach(CGItem item) { if (_cgItems.ContainsKey(item)) { item.Detach(_mlCharGen, _cgItems[item]); _cgItems.Remove(item); } }
public void Attach(CGItem item) { if (!_cgItems.ContainsKey(item)) { string tag = item.Attach(_mlCharGen); _cgItems.Add(item, tag); } }