UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
EventLoopModule.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreTypes.h"
8
9namespace UE::EventLoop {
10
12{
13public:
14 // IModuleInterface
15
20 virtual void StartupModule() override;
21
26 virtual void ShutdownModule() override;
27
33 virtual bool SupportsDynamicReloading() override
34 {
35 return false;
36 }
37};
38
39/* UE::EventLoop */ }
Definition ModuleInterface.h:14
Definition EventLoopModule.h:12
virtual bool SupportsDynamicReloading() override
Definition EventLoopModule.h:33
virtual void ShutdownModule() override
Definition EventLoopModule.cpp:13
virtual void StartupModule() override
Definition EventLoopModule.cpp:9
Definition EventLoopLog.cpp:5