Bacterium.Cell.Cell C# (CSharp) Method

Cell() public method

public Cell ( int x, int y, bool enabled = false ) : System
x int
y int
enabled bool
return System
        public Cell(int x = 0, int y = 0, bool enabled = false)
        {
            X = x;
            Y = y;
            Enabled = enabled;
        }
Cell