Exteor/header/SetupManager.h

18 lines
320 B
C
Raw Permalink Normal View History

2024-06-07 20:30:06 +03:00
#pragma once
namespace xtr {
class SetupManager {
public:
static void CCLInitSequence();
static void CCLExitSequence();
static void InitEnvironment();
protected:
static void InitSourceManager();
static void InitTextModule();
static void KillTextModule();
static bool LoadPython();
};
} // namespace xtr