Files
UnrealEngineUWP/Engine/Source/Developer/HTML5/HTML5TargetPlatform/Public/IHTML5TargetPlatformModule.h
James Moran c5b4ca076e HTML5 SDK settings are now set via the Editor.
Android SDK path backslash duplication fix.
Fix for User inis not saving array properties correctly.

#codereview Ankit.Khare, Josh.Adams

[CL 2418611 by James Moran in Main branch]
2015-01-26 10:22:57 -05:00

25 lines
454 B
C++

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "ITargetPlatformModule.h"
/**
* Interface for AndroidDeviceDetection 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( ) { }
};