Python-Cpu-Emulator/std.h

19 lines
157 B
C
Raw Normal View History

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