home · contact · privacy
As init_map() doesn't need the seed anymore, it's no longer a parameter.
[plomrogue] / roguelike.h
index 650ddc106094df8e31936bb4e91ca7c1aeac7f87..45abf778a1e7425a2e2ca69092d219773bd2faef 100644 (file)
@@ -22,7 +22,9 @@ struct Monster {
   uint16_t y;
   uint16_t x; };
 
-uint16_t rrand();
+uint16_t rrand(char, uint32_t);
+uint32_t load_seed();
+void save_seed(uint32_t);
 void toggle_window (struct WinMeta *, struct Win *);
 void growshrink_active_window (struct WinMeta *, char);
 struct Map init_map ();