home · contact · privacy
Refactored all "next turn" / "record action" stuff into one short function.
[plomrogue] / src / windows.h
index a597ebb3bb975d6719a87b56afa90546f89017fc..53f1559facfad148de8d53934e5e2a794c625783 100644 (file)
@@ -1,3 +1,6 @@
+#ifndef WINDOWS_H
+#define WINDOWS_H
+
 #include "yx_uint16.h"
 
 struct Frame {
@@ -31,3 +34,5 @@ extern void resize_active_win (struct WinMeta *, uint16_t, uint16_t);
 extern void cycle_active_win (struct WinMeta *, char);
 extern void shift_active_win (struct WinMeta *, char);
 extern void reset_pad_offset (struct WinMeta *, uint16_t);
+
+#endif