Skip to content

Instantly share code, notes, and snippets.

@skoon
Forked from grumpydev/IRoboCop.cs
Created September 9, 2011 08:15
Show Gist options
  • Save skoon/1205743 to your computer and use it in GitHub Desktop.
Save skoon/1205743 to your computer and use it in GitHub Desktop.
public interface IJudgeDread
{
void IAmTheLaw();
}
public interface IRoboCop : IJudgeDread
{
void ServeThePublicTrust();
void ProtectTheInnocent();
void UpholdTheLaw();
[EditorBrowsable(EditorBrowsableState.Never)]
void Classified();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment