CellsAutomate.Food.FoodMatrix.FoodMatrix C# (CSharp) Method

FoodMatrix() public method

public FoodMatrix ( int length, int height, IFoodDistributionStrategy strategy ) : System.Drawing
length int
height int
strategy IFoodDistributionStrategy
return System.Drawing
        public FoodMatrix(int length, int height, IFoodDistributionStrategy strategy)
        {
            _matrix = new int[length, height];
            _strategy = strategy;
        }