1
0
Fork 0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-09-20 21:37:26 +02:00
VVVVVV/desktop_version/src/LocalizationMaint.h
Dav999-v 97d905e8bf 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
2022-12-31 20:04:56 -08:00

17 lines
471 B
C++

#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 */