- 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
132 B
C++
7 lines
No EOL
132 B
C++
#pragma once
|
|
|
|
class ConfigManager {
|
|
public:
|
|
static void SaveCustomDelaySettings();
|
|
static void LoadCustomDelaySettings();
|
|
}; |