I N T E R P O L A T I O N

This commit is contained in:
2026-04-14 14:28:14 -04:00
parent 15f85b84a9
commit b60c4bc295
25 changed files with 483 additions and 172 deletions
+4 -2
View File
@@ -76,7 +76,8 @@ namespace anm2ed
Document& operator=(const Document&) = delete;
Document(Document&&) noexcept;
Document& operator=(Document&&) noexcept;
bool save(const std::filesystem::path& = {}, std::string* = nullptr, anm2::Compatibility = anm2::ANM2ED);
bool save(const std::filesystem::path& = {}, std::string* = nullptr, anm2::Compatibility = anm2::ANM2ED,
bool = false, bool = true, bool = true);
void hash_set();
void clean();
void change(ChangeType);
@@ -100,7 +101,8 @@ namespace anm2ed
void spritesheet_add(const std::filesystem::path&);
void sound_add(const std::filesystem::path&);
bool autosave(std::string* = nullptr, anm2::Compatibility = anm2::ANM2ED);
bool autosave(std::string* = nullptr, anm2::Compatibility = anm2::ANM2ED, bool = false, bool = true,
bool = true);
std::filesystem::path autosave_path_get();
std::filesystem::path path_from_autosave_get(std::filesystem::path&);