unitysamples / LyraStarterGame /Plugins /GameFeatures /ShooterTests /Source /ShooterTestsRuntime /Private /ShooterTestsRuntimeModule.cpp
| // Copyright Epic Games, Inc. All Rights Reserved. | |
| class FShooterTestsRuntimeModule : public IModuleInterface | |
| { | |
| public: | |
| /** IModuleInterface implementation */ | |
| virtual void StartupModule() override {} | |
| virtual void ShutdownModule() override {} | |
| }; | |
| IMPLEMENT_MODULE(FShooterTestsRuntimeModule, ShooterTestsRuntime) |