diff --git a/compile_commands.json b/compile_commands.json new file mode 120000 index 0000000..06729e8 --- /dev/null +++ b/compile_commands.json @@ -0,0 +1 @@ +_build/debug/compile_commands.json \ No newline at end of file diff --git a/src/save.h b/src/save.h new file mode 100644 index 0000000..8b34f2a --- /dev/null +++ b/src/save.h @@ -0,0 +1,16 @@ +#ifndef SAVE_H_ +#define SAVE_H_ + +#include "player.h" + +typedef struct Save { + int seed; + unsigned int map_level; + unsigned int player_level; + unsigned int player_daggers; + unsigned int player_xp; + double player_gold; + class_t class; +} Save; + +#endif // SAVE_H_