home · contact · privacy
More documentation and re-styling of code.
[plomrogue] / src / map_objects.h
index ebda3143de670cb5e6fb73ba91798618686cc885..d5985148a04707f3c4b0a89697e36de8d6c2db9c 100644 (file)
@@ -16,7 +16,6 @@ struct World;
 
 
 /* Player is non-standard: single and of a hard-coded type. */
-
 struct Player
 {
     struct yx_uint16 pos;
@@ -119,4 +118,6 @@ extern void read_map_objects_monsterdata( void * start, FILE * file);
 /* Get pointer to the map object definition of identifier "def_id". */
 extern struct MapObjDef * get_map_obj_def(struct World * world, char def_id);
 
+
+
 #endif