public Creature(string name, MatrixCoords topLeft)
     : base(name, topLeft, new char[, ] {
     { 'O' }
 })
 {
 }
Пример #2
0
        };                                                                                                                                                                                               // to add tasks

        public NPC(string name, string task, MatrixCoords topLeft)
            : base(name, task, topLeft, new char[, ] {
            { ' ', 'O', ' ' }, { '-', '|', '-' }, { '/', ' ', '\\' }
        })
        {
        }
Пример #3
0
 public Humanoid(string name, string task, MatrixCoords topLeft, char[,] body)
     : base(name, topLeft, body)
 {
     this.Task  = task;
     this.armor = Items.Armor;
 }