home · contact · privacy
Made all function declarations in header files extern, for stylistic consistency...
[plomrogue] / src / draw_wins.c
index 13cd5225cfe2cad62d649018d0127d4a264c370f..0ec8d7a44719edab653f4018266304d0dafeb51f 100644 (file)
@@ -1,11 +1,12 @@
+#include "draw_wins.h"
 #include <stdlib.h>
 #include <stdint.h>
-#include <ncurses.h>
 #include <string.h>
+#include <ncurses.h>
 #include "windows.h"
-#include "draw_wins.h"
 #include "roguelike.h"
 #include "keybindings.h"
+#include "actors.h"
 
 void draw_with_linebreaks (struct Win * win, char * text, uint16_t start_y) {
 // Write text into window content space. Start on row start_y. Fill unused rows with whitespace.