old-Testgame/renderer/shapes/float2D.h

7 lines
102 B
C
Raw Normal View History

2016-08-28 09:31:10 +00:00
#ifndef __SHAPES_FLOAT2D_H
#define __SHAPES_FLOAT2D_H
struct float2D {
float x;
float y;
};
#endif