- Build Manager system to allow swapping, saving and loading build setups for characters - Necromancer new channeled ability: Soulfire - Mage new melee ability: Cold Slash - Mage new summon ability: Mirror Image - Added summon ability support to spawn more than one minion per cast
11 lines
252 B
C#
11 lines
252 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
[System.Serializable]
|
|
public class ClassBuildLibrary
|
|
{
|
|
public GameTag characterClass;
|
|
public List<BaseAbility> possibleClassAbilities = new List<BaseAbility>();
|
|
}
|