dice/pc.h
2025-09-14 22:02:49 +02:00

14 lines
251 B
C

#ifndef _pc_h
#define _pc_h
typedef struct pc_t {
char name[64];
int dexterity,strength,constitution,intelligence,wisdom;
const char* spells[64];
const char* traits[64];
} pc_t;
int new_character(pc_t* pc, const char* name);
#endif /* _pc_h */