2024-10-19 19:10:08 +01:00
|
|
|
//
|
|
|
|
|
// Created by ash on 10/12/22.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#ifndef INKAY_CONFIG_H
|
|
|
|
|
#define INKAY_CONFIG_H
|
|
|
|
|
|
2025-07-21 20:59:55 +09:00
|
|
|
#include <stdint.h>
|
|
|
|
|
#include "lang.h"
|
|
|
|
|
|
2024-10-19 19:10:08 +01:00
|
|
|
class Config {
|
|
|
|
|
public:
|
|
|
|
|
static void Init();
|
|
|
|
|
|
|
|
|
|
// wups config items
|
|
|
|
|
static bool connect_to_network;
|
2025-07-21 20:59:55 +09:00
|
|
|
static uint32_t language;
|
2024-10-19 19:10:08 +01:00
|
|
|
|
2026-05-21 13:37:36 -04:00
|
|
|
static bool show_startup_toast;
|
|
|
|
|
|
2024-10-19 19:10:08 +01:00
|
|
|
// private stuff
|
|
|
|
|
static bool need_relaunch;
|
|
|
|
|
|
|
|
|
|
// private stuff
|
|
|
|
|
static bool is_wiiu_menu;
|
|
|
|
|
|
2025-07-21 20:59:55 +09:00
|
|
|
static inkay_language current_language;
|
2024-10-19 19:10:08 +01:00
|
|
|
static bool unregister_task_item_pressed;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif //INKAY_CONFIG_H
|