leopard8352
2023-12-04 8871a733498c8d717714b83bb096b7738224541a
提交 | 用户 | 时间
8871a7 1 // Copyright Epic Games, Inc. All Rights Reserved.
L 2
3 #include "Taptap.h"
4
5 DEFINE_LOG_CATEGORY(LogTaptap);
6
7 #define LOCTEXT_NAMESPACE "FTaptapModule"
8
9 void FTaptapModule::StartupModule()
10 {
11     // This code will execute after your module is loaded into memory; the exact timing is specified in the .uplugin file per-module
12 }
13
14 void FTaptapModule::ShutdownModule()
15 {
16     // This function may be called during shutdown to clean up your module.  For modules that support dynamic reloading,
17     // we call this function before unloading the module.
18 }
19
20 #undef LOCTEXT_NAMESPACE
21     
22 IMPLEMENT_MODULE(FTaptapModule, Taptap)