20 lines
419 B
C++
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;
|
|
|
|
};
|