32 lines
801 B
C#
32 lines
801 B
C#
namespace ProjectAirFighter.MovementStrategy
|
|
{
|
|
public class ObjectParameters
|
|
{
|
|
private readonly int _x;
|
|
private readonly int _y;
|
|
private readonly int _width;
|
|
private readonly int _height;
|
|
|
|
public int LeftBorder => _x;
|
|
|
|
public int TopBorder => _y;
|
|
|
|
public int RightBorder => _x + _width;
|
|
|
|
public int DownBorder => _y + _height * 125 / 1000 + (_height-_height * 125 / 1000)/2 ;
|
|
|
|
public int ObjectMiddleHorizontal => _x + _width / 2;
|
|
|
|
public int ObjectMiddleVertical => _y +(_height - _height * 125 / 1000) / 2 / 2;
|
|
|
|
public ObjectParameters(int x, int y, int width, int height)
|
|
{
|
|
_x = x;
|
|
_y = y;
|
|
_width = width;
|
|
_height = height;
|
|
}
|
|
|
|
}
|
|
}
|