Skip to content

Instantly share code, notes, and snippets.

@tpresthus
Created September 17, 2016 18:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tpresthus/07813352bf0d5d7b069d70950c665b95 to your computer and use it in GitHub Desktop.
Save tpresthus/07813352bf0d5d7b069d70950c665b95 to your computer and use it in GitHub Desktop.
Example interface for automatic transmission shifter
public interface IShifter
{
void Park();
void Reverse();
void Neutral();
void Drive();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment