Skip to content

Instantly share code, notes, and snippets.

@daleth90
Created April 29, 2018 08:38
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/1540ab53cf5d5db228614944b49eba05 to your computer and use it in GitHub Desktop.
Save daleth90/1540ab53cf5d5db228614944b49eba05 to your computer and use it in GitHub Desktop.
modified for request
using System;
public interface IOthelloBoardModel {
event Action<int, int, Disk> OnPlaceDisk;
event Action<int, int> OnFlipDisk;
void RequestDisk( int x, int y );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment