Skip to content

Instantly share code, notes, and snippets.

@Kryzarel
Last active November 30, 2017 19:27
Show Gist options
  • Save Kryzarel/400331d359bf5aa5f838c9c4e4f76856 to your computer and use it in GitHub Desktop.
Save Kryzarel/400331d359bf5aa5f838c9c4e4f76856 to your computer and use it in GitHub Desktop.
Base StatModifier class
public class StatModifier
{
public readonly float Value;
public StatModifier(float value)
{
Value = value;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment