This repository has been archived on 2024-11-16. You can view files and clone it, but cannot push or open issues or pull requests.

16 lines
325 B
C++
Raw Normal View History

2021-01-02 11:01:19 +08:00
#include "CoreMinimal.h"
#include "Modules/ModuleManager.h"
class KCP_API FkcpModule : public IModuleInterface
{
public:
// ~Begin IModuleInterface Interface
virtual void StartupModule() override { }
virtual void ShutdownModule() override { }
// ~End IModuleInterface Interface
};
IMPLEMENT_MODULE(FkcpModule, kcp)