10 lines
126 B
D
10 lines
126 B
D
|
module utils.shapes;
|
||
|
|
||
|
public struct Vec2f {
|
||
|
float x,y;
|
||
|
}
|
||
|
|
||
|
public struct Rectf {
|
||
|
float x, y;
|
||
|
float width, height;
|
||
|
}
|