Skip to content

Instantly share code, notes, and snippets.

@Kryzarel
Created November 30, 2017 20:28
Show Gist options
  • Save Kryzarel/a99030a849d8c74458c97cf4ae3ef945 to your computer and use it in GitHub Desktop.
Save Kryzarel/a99030a849d8c74458c97cf4ae3ef945 to your computer and use it in GitHub Desktop.
Added Type
public class StatModifier
{
public readonly float Value;
public readonly StatModType Type;
public StatModifier(float value, StatModType type)
{
Value = value;
Type = type;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment