Guest User

Untitled

a guest
Nov 20th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. public interface ICar
  2. {
  3. void ConnectBattery();
  4. void SendPowerToStarter();
  5. void AddFuelToCylinder(int cylinderNumber);
  6. void AddAirToCylinder(int cylinderNumber);
  7. void SendSparkToPlug(int plugNumber);
  8. void TurnCrankshaft();
  9. }
Add Comment
Please, Sign In to add comment