Example #1
0
		public void Clicked(MemoryState ugh)
		{
			Trace.WriteLine ("Found clicked " + Name);
			IsFound = true;

			var handler = OnClick;
			if (handler != null)
				handler(ugh);

		}	
Example #2
0
 public void OnActivate(MemoryState state, GameItem draggedItem)
 {
     var handler = Activated;
     if (handler != null)
         Activated(state, draggedItem);
 }