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
Ludovic 'Archivist' Lagouardette fc534fd8e1 Handle rendering of Rigids
2023-10-02 15:03:07 +02:00

10 lines
No EOL
126 B
D

module utils.shapes;
public struct Vec2f {
float x,y;
}
public struct Rectf {
float x, y;
float width, height;
}