gpu-screen-recorder/include/vec2.h

8 lines
91 B
C
Raw Normal View History

#ifndef VEC2_H
#define VEC2_H
typedef struct {
int x, y;
} vec2i;
#endif /* VEC2_H */