Example #1
0
		public ActiveUnit (string name, StatContainer stats,
			List<Ability> skills, uint currenthp)
		{
			this.name = name;
			this.stats = stats;
			this.skills = skills;
			currenthealth = currenthp;
		}
Example #2
0
		public ActiveCharacter (string name, StatContainer stats,
			List<Ability> skills, uint currenthp) : base (name,
				stats, skills, currenthp)
		{

		}
Example #3
0
		public ActiveEnemy (string name, StatContainer stats,
			List<Ability> skills, uint currenthp, 
			EnemyClass enemyType) : base (name, stats, skills, currenthp)
		{
			this.enemyType = enemyType;
		}
Example #4
0
		public Equipment (StatContainer stats)
		{
			this.stats = stats;
		}