summaryrefslogtreecommitdiff
path: root/include/d/d_lang.h
blob: 425146620e9a003f3316b0633a214d219bcc6148 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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