- Split 1000+ line dllmain.cpp into clean, modular structure - Organized code into Common/, Utils/, Config/, Automation/, UI/, Input/ modules - Removed precompiled headers to simplify build configuration - Improved maintainability and code organization - No functional changes, identical addon behavior
7 lines
No EOL
103 B
C++
7 lines
No EOL
103 B
C++
#pragma once
|
|
|
|
class UIManager {
|
|
public:
|
|
static void RenderUI();
|
|
static void RenderOptions();
|
|
}; |