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++

#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)