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/8fc4d4c64c223e9f19e069993a3d533a to your computer and use it in GitHub Desktop.
Save daleth90/8fc4d4c64c223e9f19e069993a3d533a to your computer and use it in GitHub Desktop.
using System;
public interface IOthelloBoardModel {
event Action<int, int, Disk> OnPlaceDisk;
event Action<int, int> OnFlipDisk;
void TryPlaceDisk( int x, int y );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment