home · contact · privacy
Added #include guards.
[plomrogue] / src / roguelike.h
index a6c154a8cc5c1343d89c2f56aec87b3fe664aa7e..9ecd71a890f9f90a3153a0a45862dee88002eddd 100644 (file)
@@ -1,3 +1,6 @@
+#ifndef ROGUELIKE_H
+#define ROGUELIKE_H
+
 struct World {
   char interactive;
   struct KeyBinding * keybindings;
@@ -39,3 +42,5 @@ void scroll_pad (struct WinMeta *, char);
 void growshrink_active_window (struct WinMeta *, char);
 void map_scroll (struct Map *, char);
 unsigned char meta_keys(int, struct World *, struct WinMeta *, struct Win *, struct Win *, struct Win *, struct Win *);
+
+#endif