27 lines
393 B
C
27 lines
393 B
C
|
#pragma once
|
||
|
|
||
|
#include "configurator_wnd.h"
|
||
|
|
||
|
namespace cfg {
|
||
|
|
||
|
enum class ConfigType {
|
||
|
Config,
|
||
|
KFControl,
|
||
|
};
|
||
|
|
||
|
// globals
|
||
|
extern bool CONFIGURATOR_STANDALONE;
|
||
|
extern ConfigType CONFIGURATOR_TYPE;
|
||
|
|
||
|
class Configurator {
|
||
|
private:
|
||
|
ConfiguratorWindow wnd;
|
||
|
|
||
|
public:
|
||
|
|
||
|
Configurator();
|
||
|
~Configurator();
|
||
|
void run();
|
||
|
};
|
||
|
}
|