You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
35 lines
774 B
C++
35 lines
774 B
C++
// Copyright 1998-2018 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "IAutomationControllerModule.h"
|
|
|
|
/**
|
|
* Implements the AutomationController module.
|
|
*/
|
|
class FAutomationControllerModule
|
|
: public IAutomationControllerModule
|
|
{
|
|
public:
|
|
|
|
// IAutomationControllerModule interface
|
|
|
|
virtual IAutomationControllerManagerRef GetAutomationController( ) override;
|
|
virtual void Init() override;
|
|
virtual void Tick() override;
|
|
|
|
public:
|
|
|
|
// IModuleInterface interface
|
|
|
|
virtual void StartupModule() override;
|
|
virtual void ShutdownModule() override;
|
|
virtual bool SupportsDynamicReloading() override;
|
|
|
|
private:
|
|
|
|
/** Holds the automation controller singleton. */
|
|
static IAutomationControllerManagerPtr AutomationControllerSingleton;
|
|
};
|