summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorrobojumper <robojumper@gmail.com>2025-09-27 15:47:58 +0200
committerrobojumper <robojumper@gmail.com>2025-09-27 15:52:32 +0200
commit183ce0e86f7c7796568607b5239035406ea448d2 (patch)
treed6cf396866b41a12584796962598c413a622dfc7 /include
parent74aef290933bf0183d839c7b24a2330f470a6997 (diff)
d_lang OK
Diffstat (limited to 'include')
-rw-r--r--include/d/d_lang.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/include/d/d_lang.h b/include/d/d_lang.h
new file mode 100644
index 00000000..42514662
--- /dev/null
+++ b/include/d/d_lang.h
@@ -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