20 lines
341 B
C++
20 lines
341 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "IREEDriverRDGModule.h"
|
|
|
|
#include "Misc/CoreDelegates.h"
|
|
#include "IREEDriverRDGLog.h"
|
|
|
|
DEFINE_LOG_CATEGORY(LogIREEDriverRDG);
|
|
|
|
void FIREEDriverRDGModule::StartupModule()
|
|
{
|
|
|
|
}
|
|
|
|
void FIREEDriverRDGModule::ShutdownModule()
|
|
{
|
|
|
|
}
|
|
|
|
IMPLEMENT_MODULE(FIREEDriverRDGModule, IREEDriverRDG) |