Add LocalizationMaint.cpp/h (not compiled yet)

This commit is part of rewritten history of the localization branch.
The original (unsquashed) commit history can be found here:
https://github.com/Dav999-v/VVVVVV/tree/localization-orig
This commit is contained in:
Dav999-v
2022-12-29 05:23:41 +01:00
committed by Misa Elizabeth Kai
parent 8e33815c97
commit 97d905e8bf
2 changed files with 415 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
#ifndef LOCALIZATIONMAINT_H
#define LOCALIZATIONMAINT_H
namespace loc
{
bool sync_lang_files(void);
bool save_roomname_to_file(const std::string& langcode, bool custom_level, int roomx, int roomy, const char* tra, const char* explanation);
bool save_roomname_explanation_to_files(bool custom_level, int roomx, int roomy, const char* explanation);
void local_limits_check(void);
void global_limits_check(void);
} /* namespace loc */
#endif /* LOCALIZATIONMAINT_H */