Skip to content

Instantly share code, notes, and snippets.

@daleth90
Last active April 1, 2018 15:37
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
using System;
public interface IOthelloBoardView {
event Action<int, int> OnClickTile;
void PlaceDisk( int x, int y, Disk disk );
void FlipDisk( int x, int y );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment