Created
December 5, 2017 20:12
-
-
Save Kryzarel/9c52d5536c6d547d92aa12cf7daae250 to your computer and use it in GitHub Desktop.
Added parameterless constructor
This file contains 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 CharacterStat() | |
{ | |
statModifiers = new List<StatModifier>(); | |
StatModifiers = statModifiers.AsReadOnly(); | |
} | |
public CharacterStat(float baseValue) : this() | |
{ | |
BaseValue = baseValue; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment