hyades.physics.BoundingSquare.BoundingSquare C# (CSharp) Метод

BoundingSquare() публичный Метод

public BoundingSquare ( Vector2 &min, Vector2 &max ) : System
min Vector2
max Vector2
Результат System
        public BoundingSquare(ref Vector2 min, ref Vector2 max)
        {
            this.min = min;
            this.max = max;
            this.valid = true;
        }