14 lines
280 B
C++
14 lines
280 B
C++
#include "PawnEditorModule.h"
|
|
|
|
#include "PwnStyle.h"
|
|
#include "Modules/ModuleManager.h"
|
|
|
|
IMPLEMENT_MODULE(FPawnEditorModule, PawnEditor)
|
|
|
|
void FPawnEditorModule::StartupModule() {
|
|
FPwnStyle::Initialize();
|
|
}
|
|
|
|
void FPawnEditorModule::ShutdownModule() {
|
|
FPwnStyle::Shutdown();
|
|
} |