16 lines
151 B
Plaintext
16 lines
151 B
Plaintext
|
module;
|
||
|
#include <d2d1.h>
|
||
|
|
||
|
export module Math;
|
||
|
|
||
|
export
|
||
|
{
|
||
|
struct Vector2 : D2D1_POINT_2F
|
||
|
{
|
||
|
|
||
|
};
|
||
|
struct Rect : D2D1_RECT_F
|
||
|
{
|
||
|
|
||
|
};
|
||
|
}
|