Skip to content

Instantly share code, notes, and snippets.

@daleth90
Last active April 1, 2018 15:37
Embed
What would you like to do?
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