Esempio n. 1
0
        protected Actor(Color foreground, Color background, int glyph, string name) : base(foreground, background, glyph)
        {
            Name = name;

            anatomy = new Anatomy(this);

            anatomy.HardCodeHumanParts();

            NetBiologyValues();

            Health = HealthMax;

            SkinColor = foreground;
        }