Last active
September 28, 2017 10:16
-
-
Save NMZivkovic/68d7d83c79cf4fa78ea6f07c9132a271 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 class Type0Entity : Entity | |
{ | |
public override int GetNewValue(int newValue) | |
{ | |
return newValue; | |
} | |
} | |
public class Type1Entity : Entity | |
{ | |
public override int GetNewValue(int newValue) | |
{ | |
return 2*newValue; | |
} | |
} | |
public class Type2Entity : Entity | |
{ | |
public override int GetNewValue(int newValue) | |
{ | |
return 3*newValue; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment