Aura.Channel.World.Entities.Creature.Creature C# (CSharp) Method

Creature() protected method

protected Creature ( ) : System
return System
		protected Creature()
		{
			this.Client = new DummyClient();

			this.Temp = new CreatureTemp();
			this.Titles = new CreatureTitles(this);
			this.Keywords = new CreatureKeywords(this);
			this.Regens = new CreatureRegen(this);
			this.Skills = new CreatureSkills(this);
			this.StatMods = new CreatureStatMods(this);
			this.Conditions = new CreatureConditions(this);
			this.Quests = new CreatureQuests(this);
			this.Drops = new CreatureDrops(this);
			this.DeadMenu = new CreatureDeadMenu(this);
			this.AimMeter = new AimMeter(this);
			this.Party = Party.CreateDummy(this);
			this.Inventory = new CreatureInventory(this);

			this.Vars = new ScriptVariables();

			_inquiryCallbacks = new Dictionary<byte, Action<Creature>>();
			_hitTrackers = new Dictionary<long, HitTracker>();
		}