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