thrive/01_text_adventure/room.h

18 lines
203 B
C
Raw Normal View History

#ifndef _FD_ROOM_
#define _FD_ROOM_
typedef struct Room Room;
2025-01-04 04:45:44 -05:00
typedef struct Rooms Rooms;
struct Room {
char *name;
char *description;
};
2025-01-04 04:45:44 -05:00
struct Rooms {
Room rooms[100];
int count;
};
#endif