13 lines
No EOL
162 B
C
13 lines
No EOL
162 B
C
|
|
#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 |