Files
NASM/wayland/include/geomerty.h

10 lines
90 B
C

#ifndef GEOMETRY_H
#define GEOMETRY_H
struct vec2 {
float x;
float y;
};
#endif