Aura.Channel.World.Entities.Creatures.CreatureSkills.CreatureSkills C# (CSharp) Method

CreatureSkills() public method

New skill manager for creature.
public CreatureSkills ( Creature creature ) : System
creature Creature
return System
		public CreatureSkills(Creature creature)
		{
			_skills = new Dictionary<SkillId, Skill>();
			_callbacks = new Dictionary<SkillId, Action>();
			_creature = creature;
		}