xrxs/user.h

9 lines
158 B
C
Raw Normal View History

typedef struct Cart Cart;
typedef struct Realm Realm;
typedef struct UserInfo {
char name[32];
uvlong password;
Cart* cart;
Realm* realm;
} UserInfo;