public void Clicked(MemoryState ugh) { Trace.WriteLine ("Found clicked " + Name); IsFound = true; var handler = OnClick; if (handler != null) handler(ugh); }
public void OnActivate(MemoryState state, GameItem draggedItem) { var handler = Activated; if (handler != null) Activated(state, draggedItem); }