voxel-test/inv.h
2024-07-19 21:14:40 -04:00

8 lines
No EOL
83 B
C

#ifndef V_INV_H
#define V_INV_H
struct item {
int id;
int count;
};
#endif