diff options
-rw-r--r-- | src/map/instance.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/map/instance.c b/src/map/instance.c index 887e0cb24..8c8f9e2fd 100644 --- a/src/map/instance.c +++ b/src/map/instance.c @@ -19,6 +19,12 @@ #include "party.h"
#include "pc.h"
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <stdarg.h>
+#include <time.h>
+
int instance_start = 0; // To keep the last index + 1 of normal map inserted in the map[ARRAY]
struct s_instance instance[MAX_INSTANCE];
|