Inkay/plugin/src/config.h
Jas b04ebb8624 feat: make startup toast optional
added a configuration option to show/hide startup toast
2026-05-21 14:00:39 -04:00

27 lines
411 B
C++

//
// Created by ash on 10/12/22.
//
#ifndef INKAY_CONFIG_H
#define INKAY_CONFIG_H
class Config {
public:
static void Init();
// wups config items
static bool connect_to_network;
static bool show_startup_toast;
// private stuff
static bool need_relaunch;
// private stuff
static bool is_wiiu_menu;
static bool unregister_task_item_pressed;
};
#endif //INKAY_CONFIG_H