d_lang OK

This commit is contained in:
robojumper
2025-09-27 15:47:58 +02:00
parent 74aef29093
commit 183ce0e86f
11 changed files with 72 additions and 31 deletions
+21
View File
@@ -0,0 +1,21 @@
#ifndef D_LANG_H
#define D_LANG_H
#include "rvl/SC.h"
// all of this is made up
enum dLang_e {
D_LANG_JP = SC_LANG_JP,
D_LANG_EN = SC_LANG_EN,
D_LANG_FR = SC_LANG_FR,
D_LANG_ES = SC_LANG_SP,
};
// Yes there are three...
u8 getCurrentLanguage1();
u8 getCurrentLanguage2();
u8 getCurrentLanguage();
#endif