DEADSOFTWARE

save: move save code to separated file
[flatwaifu.git] / src / dots.h
index 5a8b75204934b086549e8a4bea4848de82bae1ce..ae40ce5afd87ae47d1bff3a56cd89fe8069b4d5e 100644 (file)
 
 #include "glob.h"
 #include "view.h" // obj_t
-#include <stdio.h> // FILE
 
 #define MAXDOT 400
 
-#pragma pack(1)
 typedef struct {
   obj_t o;
   byte c, t;
 } dot_t;
-#pragma pack()
 
 extern dot_t dot[MAXDOT];
 
-void DOT_savegame (FILE *h);
-void DOT_loadgame (FILE *h);
 void DOT_init (void);
 void DOT_alloc (void);
 void DOT_act (void);