You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
30 lines
612 B
C++
30 lines
612 B
C++
// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
|
|
|
|
/*=============================================================================
|
|
ITargetPlatformModule.h: Declares the ITargetPlatformModule interface.
|
|
=============================================================================*/
|
|
|
|
#pragma once
|
|
|
|
|
|
/**
|
|
* Interface for target platform modules.
|
|
*/
|
|
class ITargetPlatformModule
|
|
: public IModuleInterface
|
|
{
|
|
public:
|
|
|
|
/**
|
|
* Gets the target platform for this module.
|
|
*/
|
|
virtual ITargetPlatform* GetTargetPlatform( ) = 0;
|
|
|
|
public:
|
|
|
|
/**
|
|
* Virtual destructor.
|
|
*/
|
|
~ITargetPlatformModule( ) { }
|
|
};
|