Skip to content

Instantly share code, notes, and snippets.

@NMZivkovic
Created September 28, 2017 10:14
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 NMZivkovic/c1ba4129785e457808afd728aa8207c0 to your computer and use it in GitHub Desktop.
Save NMZivkovic/c1ba4129785e457808afd728aa8207c0 to your computer and use it in GitHub Desktop.
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