storage.h 349 B

1234567891011
  1. #pragma once
  2. #include <game/player.h>
  3. #include <game/game.h>
  4. #include <flip_world.h>
  5. #include <flip_storage/storage.h>
  6. bool save_player_context(PlayerContext *player_context);
  7. bool load_player_context(PlayerContext *player_context);
  8. // save the json_data and enemy_data to separate files
  9. bool separate_world_data(char *id, FuriString *world_data);