SkyPortal-plugin/Source/SkyPortal/Public/SkyPortal.h

22 lines
412 B
C
Raw Normal View History

2024-09-17 15:50:37 +00:00
// Copyright Epic Games, Inc. All Rights Reserved.
2024-09-18 10:25:01 +00:00
// This plugin will try to make a complete plug n play subsystem for skylanders portals
2024-09-17 15:50:37 +00:00
#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:
2024-09-18 10:25:01 +00:00
2024-09-17 15:50:37 +00:00
};
2024-09-18 10:25:01 +00:00