Created
December 3, 2017 21:28
-
-
Save Kryzarel/d2595779b441726555fc4a409efd5f28 to your computer and use it in GitHub Desktop.
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 readonly ReadOnlyCollection<StatModifier> StatModifiers; // Add this variable | |
public CharacterStat(float baseValue) | |
{ | |
BaseValue = baseValue; | |
statModifiers = new List<StatModifier>(); | |
StatModifiers = statModifiers.AsReadOnly(); // Add this line to the 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
using System.Collections.ObjectModel; // Add this using statement |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment