Ejemplo n.º 1
0
 public Spellbook(Attack.Element _element)
 {
     attacks = new List <Attack>();
     element = _element;
 }
Ejemplo n.º 2
0
 public void IncreaseSpellbookExp(Attack.Element element, int value)
 {
     // Find all elements that match and raise exp
 }
Ejemplo n.º 3
0
 public MeleeHitbox(Attack.AttackType attackType, Attack.Element element, float length)
 {
     properties.attackType   = attackType;
     properties.element      = element;
     properties.attackLength = length;
 }