15 lines
198 B
C++
15 lines
198 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <cstdint>
|
|
|
|
namespace launcher::signal {
|
|
|
|
// settings
|
|
extern bool DISABLE;
|
|
extern bool USE_VEH_WORKAROUND;
|
|
|
|
void attach();
|
|
void init();
|
|
}
|