2022-12-10 14:01:54 +11:00
|
|
|
//
|
|
|
|
|
// Created by ash on 10/12/22.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#ifndef INKAY_CONFIG_H
|
|
|
|
|
#define INKAY_CONFIG_H
|
|
|
|
|
|
2024-08-04 18:15:16 +10:00
|
|
|
#include <string_view>
|
2024-10-02 23:46:35 +10:00
|
|
|
#include <nn/swkbd.h>
|
2024-08-04 18:15:16 +10:00
|
|
|
|
2022-12-10 14:01:54 +11:00
|
|
|
class Config {
|
|
|
|
|
public:
|
|
|
|
|
static bool connect_to_network;
|
2024-10-29 18:24:13 +00:00
|
|
|
|
|
|
|
|
static bool initialized;
|
|
|
|
|
|
|
|
|
|
static bool shown_uninitialized_warning;
|
2022-12-10 14:01:54 +11:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif //INKAY_CONFIG_H
|