12 lines
124 B
C
12 lines
124 B
C
#ifndef _FD_ROOM_
|
|
#define _FD_ROOM_
|
|
|
|
typedef struct Room Room;
|
|
|
|
struct Room {
|
|
char *name;
|
|
char *description;
|
|
};
|
|
|
|
#endif
|