📦 Game Update 13936

This commit is contained in:
a2x
2023-09-09 12:07:27 +10:00
parent b6b8ee2fde
commit 28e23da953
31 changed files with 578 additions and 2345 deletions

View File

@@ -8,11 +8,10 @@ namespace builder {
}
void write_top_level(std::ofstream& output) noexcept override {
// Nothing needed here.
output << "#![allow(non_snake_case, non_upper_case_globals)]\n\n";
}
void write_namespace(std::ofstream& output, const std::string& namespace_name) noexcept override {
output << "#[allow(non_snake_case, non_upper_case_globals)]\n";
output << "pub mod " << namespace_name << " {\n";
}