store rectangle properties as ints

pull/18/head
cosmonaut 2022-04-05 16:35:55 -07:00
parent 379bdcdcb1
commit f8146b799a
1 changed files with 4 additions and 4 deletions

View File

@ -11,10 +11,10 @@ namespace MoonWorks.Collision
public int Width { get; }
public int Height { get; }
public float Right { get; }
public float Left { get; }
public float Top { get; }
public float Bottom { get; }
public int Right { get; }
public int Left { get; }
public int Top { get; }
public int Bottom { get; }
public Vector2 BottomLeft { get; }
public Vector2 TopRight { get; }