Skip to content

Instantly share code, notes, and snippets.

@Kryzarel
Last active November 30, 2017 19:26
Show Gist options
  • Save Kryzarel/a70c7befb0ed77be254667c9bdf340ba to your computer and use it in GitHub Desktop.
Save Kryzarel/a70c7befb0ed77be254667c9bdf340ba to your computer and use it in GitHub Desktop.
Base CharacterStat class
using System.Collections.Generic;
public class CharacterStat
{
public float BaseValue;
private readonly List<StatModifier> statModifiers;
public CharacterStat(float baseValue)
{
BaseValue = baseValue;
statModifiers = new List<StatModifier>();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment