Skip to content

Instantly share code, notes, and snippets.

@tpresthus
Created September 17, 2016 18:58
Show Gist options
  • Select an option

  • Save tpresthus/07813352bf0d5d7b069d70950c665b95 to your computer and use it in GitHub Desktop.

Select an option

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