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;
        }