public Matrix(int length, int height, Creator creator, IFoodDistributionStrategy strategy) { Length = length; Height = height; _creator = creator; EatMatrix = new FoodMatrix(length, height, strategy); Creatures = new Membrane[length, height]; }
public Membrane(BaseCreature creature, Random random, Point position, int generation, int parentMark, Creator creator) { Creature = creature; _random = random; _parentMark = parentMark; Position = position; Generation = generation; _creator = creator; }