10 lines
90 B
C
10 lines
90 B
C
#ifndef GEOMETRY_H
|
|
#define GEOMETRY_H
|
|
|
|
struct vec2 {
|
|
float x;
|
|
float y;
|
|
};
|
|
|
|
#endif
|