21 lines
412 B
C++
21 lines
412 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
// This plugin will try to make a complete plug n play subsystem for skylanders portals
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Modules/ModuleManager.h"
|
|
|
|
|
|
class FSkyPortalModule : public IModuleInterface
|
|
{
|
|
public:
|
|
|
|
/** IModuleInterface implementation */
|
|
virtual void StartupModule() override;
|
|
virtual void ShutdownModule() override;
|
|
|
|
private:
|
|
|
|
};
|
|
|