mirror of
https://github.com/ytsodacan/Faucet.git
synced 2026-04-23 15:37:07 +00:00
11 lines
164 B
C++
11 lines
164 B
C++
#include "stdafx.h"
|
|
#include "ModLoader.h"
|
|
|
|
|
|
struct ModStartup {
|
|
ModStartup() {
|
|
ModLoader::Get().Initialize();
|
|
}
|
|
};
|
|
|
|
static ModStartup g_ModStartup; |