home · contact · privacy
Moved window configuration files into their own config/windows/ subdirectory.
[plomrogue] / src / wincontrol.h
index 017c18b677e7224b8c87d4fb80a849ce823dd61e..ba81ea36275bd3041f102ac62cc1fd13add04cd2 100644 (file)
@@ -16,9 +16,19 @@ struct World;
 
 
 
+/* Wrapper around init_win() that reads the desired window size from a file
+ * at the path prefixing the provided win name "w_name" with "config/windows/".
+ * "f" is the window drawing function (Win._draw()).
+ */
+extern struct Win init_win_from_file(struct World * world, char * w_name,
+                                     void (* f) (struct Win *));
+
+
+
+
 /* Toggle windows in world->wins in the order desribed by the first line of
- * config/toggled_win_order, wherein each character may correspond to one
- * hardcoded window.
+ * config/windows/toggled_win_order, wherein each character may correspond to
+ * one hardcoded window.
  */
 extern void sorted_wintoggle(struct World * world);