You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
18 lines
441 B
C++
18 lines
441 B
C++
// Copyright 1998-2018 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "PlatformFeatures.h"
|
|
#include "HTML5SaveGameSystem.h"
|
|
|
|
class FHTML5PlatformFeatures : public IPlatformFeaturesModule
|
|
{
|
|
public:
|
|
virtual class ISaveGameSystem* GetSaveGameSystem() override
|
|
{
|
|
static FHTML5SaveGameSystem HTML5SaveGameSystem;
|
|
return &HTML5SaveGameSystem;
|
|
}
|
|
};
|
|
|
|
IMPLEMENT_MODULE(FHTML5PlatformFeatures, HTML5PlatformFeatures);
|