mirror of
https://repo.dec05eba.com/gpu-screen-recorder
synced 2026-03-31 09:07:13 +09:00
8 lines
91 B
C
8 lines
91 B
C
#ifndef VEC2_H
|
|
#define VEC2_H
|
|
|
|
typedef struct {
|
|
int x, y;
|
|
} vec2i;
|
|
|
|
#endif /* VEC2_H */ |