home · contact · privacy
Server/py: Remove superfluous line.
[plomrogue] / src / server / map.h
index 1ca12d69c8e56d8b80371f5d7498d7ea1f4061dd..d9ebf7476fc8a38f584a8dd1c29f42b8012065d1 100644 (file)
@@ -1,4 +1,8 @@
 /* src/server/map.h
+ *
+ * This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
+ * or any later version. For details on its copyright, license, and warranties,
+ * see the file NOTICE in the root directory of the PlomRogue source package.
  *
  * Routines to create and navigate game map.
  */
@@ -36,6 +40,8 @@ extern void remake_map();
  */
 extern uint8_t mv_yx_in_dir_legal(char dir, struct yx_uint8 * yx);
 
+/* Initialize (empty) map array at "map". */
+extern void init_empty_map(char ** map);
 
 
 #endif