Created
September 28, 2017 10:14
-
-
Save NMZivkovic/c1ba4129785e457808afd728aa8207c0 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 enum EntityType | |
{ | |
Type0 = 0, | |
Type1 = 1, | |
Type2 = 2 | |
} | |
public abstract class Entity | |
{ | |
public abstract int GetNewValue(int newValue); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment