Skip to content

Instantly share code, notes, and snippets.

@NMZivkovic
Last active September 28, 2017 10:16
Show Gist options
  • Save NMZivkovic/68d7d83c79cf4fa78ea6f07c9132a271 to your computer and use it in GitHub Desktop.
Save NMZivkovic/68d7d83c79cf4fa78ea6f07c9132a271 to your computer and use it in GitHub Desktop.
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