Skip to content

Instantly share code, notes, and snippets.

@skoon
Forked from grumpydev/IRoboCop.cs
Created September 9, 2011 08:15
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