#ifndef V_INV_H #define V_INV_H #include "linmath.h" struct item { int id; int count; }; struct player { struct item inv[10]; vec3 pos; }; #endif