Goran Lazarevski 92f99a37dd
Some checks failed
Unreal Engine Build / windows-build (push) Has been cancelled
Unreal Engine Build / macos-build (push) Has been cancelled
Lucky World source code
2025-03-18 19:25:25 +01:00

20 lines
419 B
C++

// Modifications Copyright 2018-current Getnamo. All Rights Reserved
// Copyright 2015 Vladimir Alyamkin. All Rights Reserved.
// Original code by https://github.com/unktomi
#pragma once
#include "Modules/ModuleManager.h"
class FSIOJEditorPluginModule : public IModuleInterface
{
public:
/** IModuleInterface implementation */
virtual void StartupModule() override;
virtual void ShutdownModule() override;
};