You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
47 lines
1.0 KiB
C
47 lines
1.0 KiB
C
|
|
// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
|
||
|
|
|
||
|
|
/*=============================================================================
|
||
|
|
AutomationControllerModule.h: Declares the FAutomationControllerModule class.
|
||
|
|
=============================================================================*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Implements the AutomationController module.
|
||
|
|
*/
|
||
|
|
class FAutomationControllerModule
|
||
|
|
: public IAutomationControllerModule
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
|
||
|
|
// Begin IAutomationControllerModule Interface
|
||
|
|
|
||
|
|
virtual IAutomationControllerManagerRef GetAutomationController( ) OVERRIDE;
|
||
|
|
|
||
|
|
virtual void Init() OVERRIDE;
|
||
|
|
|
||
|
|
virtual void Tick() OVERRIDE;
|
||
|
|
|
||
|
|
// End IAutomationControllerModule Interface
|
||
|
|
|
||
|
|
|
||
|
|
public:
|
||
|
|
|
||
|
|
// Begin IModuleInterface interface
|
||
|
|
|
||
|
|
virtual void StartupModule() OVERRIDE;
|
||
|
|
|
||
|
|
virtual void ShutdownModule() OVERRIDE;
|
||
|
|
|
||
|
|
virtual bool SupportsDynamicReloading() OVERRIDE;
|
||
|
|
|
||
|
|
// End IModuleInterface interface
|
||
|
|
|
||
|
|
|
||
|
|
private:
|
||
|
|
|
||
|
|
// Holds the automation controller singleton.
|
||
|
|
static IAutomationControllerManagerPtr AutomationControllerSingleton;
|
||
|
|
};
|