Created
December 18, 2018 20:12
-
-
Save jesterswilde/17555fa541c72c658e84c933db3c9685 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface IInput | |
{ | |
void GetInput(); | |
void EndInput(); | |
void StartInput(); | |
bool ShouldPlay {get;} | |
} | |
public enum InputTypes{ | |
Player, | |
TapPause | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment