Skip to content

Instantly share code, notes, and snippets.

@Stray
Created January 29, 2011 19:52
Show Gist options
  • Save Stray/802131 to your computer and use it in GitHub Desktop.
Save Stray/802131 to your computer and use it in GitHub Desktop.
First version of the BudgetGameOption interface
public interface IBudgetGameOption
{
function select():void;
function deselect():void;
function enable():void;
function disable():void;
function get selectedSignal():Signal;
function get deselectedSignal():Signal;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment