forked from PretendoNetwork/Inkay
feat: added language changing
This commit is contained in:
parent
979d9de91a
commit
907de64376
6 changed files with 107 additions and 27 deletions
|
|
@ -5,12 +5,16 @@
|
|||
#ifndef INKAY_CONFIG_H
|
||||
#define INKAY_CONFIG_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include "lang.h"
|
||||
|
||||
class Config {
|
||||
public:
|
||||
static void Init();
|
||||
|
||||
// wups config items
|
||||
static bool connect_to_network;
|
||||
static uint32_t language;
|
||||
|
||||
// private stuff
|
||||
static bool need_relaunch;
|
||||
|
|
@ -18,6 +22,7 @@ public:
|
|||
// private stuff
|
||||
static bool is_wiiu_menu;
|
||||
|
||||
static inkay_language current_language;
|
||||
static bool unregister_task_item_pressed;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue