home · contact · privacy
Sorted out library dependencies / includes. Include every header file needed by each...
[plomrogue] / src / actors.h
index e82d1da1b29d16cc59072a128ea77c8005998636..c97d91bbba3c30d7a4fa6017999d95d783f2cb4e 100644 (file)
@@ -1,6 +1,12 @@
 #ifndef ACTORS_H
 #define ACTORS_H
 
+#include <stdint.h>
+#include "yx_uint16.h"
+
+struct World;
+struct Map;
+
 struct Player {
   struct yx_uint16 pos; };