You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
29 lines
579 B
C
29 lines
579 B
C
|
|
// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Tasks Browser module
|
||
|
|
*/
|
||
|
|
class FTaskBrowserModule : public IModuleInterface
|
||
|
|
{
|
||
|
|
|
||
|
|
public:
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Called right after the module DLL has been loaded and the module object has been created
|
||
|
|
*/
|
||
|
|
virtual void StartupModule();
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Called before the module is unloaded, right before the module object is destroyed.
|
||
|
|
*/
|
||
|
|
virtual void ShutdownModule();
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Creates a tasks browser widget
|
||
|
|
*
|
||
|
|
* @return New class viewer widget
|
||
|
|
*/
|
||
|
|
virtual TSharedRef<class SWidget> CreateTaskBrowser();
|
||
|
|
|
||
|
|
};
|