Files
UnrealEngine/Engine/Plugins/Runtime/Soundscape/Source/SoundScape/Public/SoundScapeModule.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

21 lines
387 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Modules/ModuleInterface.h"
#include "Modules/ModuleManager.h"
DECLARE_LOG_CATEGORY_EXTERN(LogSoundscape, Log, All);
class SOUNDSCAPE_API FSoundscapeModule: public IModuleInterface
{
public:
// IModuleInterface interface
virtual void StartupModule() override;
virtual void ShutdownModule() override;
};