Skip to content

Instantly share code, notes, and snippets.

@daleth90
Last active April 1, 2018 15:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save daleth90/de3da1d9d2fbcce4dc766932d149f834 to your computer and use it in GitHub Desktop.
Save daleth90/de3da1d9d2fbcce4dc766932d149f834 to your computer and use it in GitHub Desktop.
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