Files
UnrealEngineUWP/Engine/Source/Developer/HTML5/HTML5TargetPlatform/Public/IHTML5TargetPlatformModule.h
Ankit Khare 9b38554ee8 UEPLAT-826 : use HTML5 SDK from third party directories.
- Always pickup HTML5 sdk from third party directory.
   - Use the new html5 template by default.

[CL 2610587 by Ankit Khare in Main branch]
2015-07-04 18:45:54 -04:00

24 lines
456 B
C++

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "ITargetPlatformModule.h"
/**
* Interface for HTML5TargetPlatformModule module.
*/
class IHTML5TargetPlatformModule
: public ITargetPlatformModule
{
public:
/**
* Refresh the list of HTML5 browsers that exist on the system
*/
virtual void RefreshAvailableDevices() = 0;
protected:
/**
* Virtual destructor
*/
virtual ~IHTML5TargetPlatformModule( ) { }
};