This repository has been archived on 2024-11-14. You can view files and clone it, but cannot push or open issues or pull requests.
game-project/source/utils/shapes.d

10 lines
126 B
D
Raw Normal View History

2023-10-02 13:03:07 +00:00
module utils.shapes;
public struct Vec2f {
float x,y;
}
public struct Rectf {
float x, y;
float width, height;
}