Skip to content
Snippets Groups Projects
Commit 9eee3e73 authored by PAILLE Kyriann's avatar PAILLE Kyriann :8ball:
Browse files

Upload New File

parent cd4ede83
No related branches found
No related tags found
No related merge requests found
#ifndef LOCATION_H
#define LOCATION_H
#include "exits.h"
#include "stack.h"
typedef struct Location
{
char *name;
char *desc;
struct Location *directions[6];
} Location;
extern Location *LocationNew(char *name, char *desc);
extern Location *LocationDelete(Location *m);
extern void LocationPrint(Location *m);
extern Location *LocationInit();
extern void LocationSetExit(Location *l1, Direction direction, Location *l2);
#endif // LOCATION_H
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment