Files
UnrealEngineUWP/Engine/Source/Developer/TargetPlatform/Public/Interfaces/IPhysXFormatModule.h
2014-03-14 14:13:41 -04:00

28 lines
539 B
C++

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
/*=============================================================================
IPhysXFormatModule.h: Declares the IPhysXFormatModule interface.
=============================================================================*/
#pragma once
/**
* Interface for PhysX format modules.
*/
class IPhysXFormatModule
: public IModuleInterface
{
public:
/**
* Gets the PhysX format.
*/
virtual IPhysXFormat* GetPhysXFormat() = 0;
protected:
IPhysXFormatModule() { }
};