Skip to content

Instantly share code, notes, and snippets.

View jakesays-old's full-sized avatar

Big Jake jakesays-old

View GitHub Profile
@jakesays-old
jakesays-old / game.cs
Last active August 29, 2015 14:27 — forked from scionwest/game.cs
class Callbacker
{
public SynchronizationContext Context{get;private set;}
public Action<IGame> Callback{get;private set;}
public Callbacker(SynchronizationContext context, Action<IGame> callback)
{
Context = context;
Callback = callback;
}