You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- still Windows platform only #jira UETOOL-4742 #rb geoffrey.douglas, alejandro.arango, chris.norden #preflight 61e817fd614a721b0c41c7d0 #ROBOMERGE-AUTHOR: simon.therriault #ROBOMERGE-SOURCE: CL 18657870 in //UE5/Release-5.0/... via CL 18657890 via CL 18657913 #ROBOMERGE-BOT: UE5 (Release-Engine-Test -> Main) (v900-18638592) [CL 18657937 by simon therriault in ue5-main branch]
18 lines
270 B
C++
18 lines
270 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Modules/ModuleInterface.h"
|
|
|
|
/**
|
|
*
|
|
*/
|
|
class IOpenCVHelperModule : public IModuleInterface
|
|
{
|
|
public:
|
|
/** Virtual destructor. */
|
|
virtual ~IOpenCVHelperModule() {}
|
|
};
|
|
|