thrive/01_text_adventure/room.h

12 lines
124 B
C

#ifndef _FD_ROOM_
#define _FD_ROOM_
typedef struct Room Room;
struct Room {
char *name;
char *description;
};
#endif