Python-Cpu-Emulator/std.h

19 lines
173 B
C
Raw Permalink Normal View History

2024-12-24 05:17:07 +00:00
#define true 1
#define false 0
#define TEST 256
struct vec2 {
int x;
int y;
};
struct vec3 {
int x;
int y;
int z;
};
int test() {
return 1;
}