Files
UnrealEngineUWP/Engine/Source/Editor/AIGraph/Public/AIGraphModule.h

14 lines
268 B
C
Raw Normal View History

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "ModuleInterface.h"
class FAIGraphModule : public IModuleInterface
{
public:
// IModuleInterface
virtual void StartupModule() override;
virtual void ShutdownModule() override;
};