public void Attach(Slot slot, AttachedItem item) { hull.Attach(item, slot); RaiseChanged(); }
public void Attach(AttachedItem item, Slot slot) { if(!slot.IsEmpty) slot.Detach(); slot.Attach(item); }
internal void Attach(AttachedItem item) { AttachedItem = item; item.Slot = this; }