LeviLamina
Loading...
Searching...
No Matches
ILevelSoundManagerConnector.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/EnableNonOwnerReferences.h"
7#include "mc/deps/core/utility/pub_sub/Connector.h"
8#include "mc/deps/core/utility/pub_sub/Publisher.h"
9#include "mc/deps/shared_types/legacy/LevelSoundEvent.h"
10
11// auto generated forward declare list
12// clang-format off
14class Vec3;
15namespace Bedrock::PubSub::ThreadModel { struct MultiThreaded; }
16// clang-format on
17
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 virtual ~ILevelSoundManagerConnector() /*override*/ = default;
23
24 virtual ::Bedrock::PubSub::Connector<
25 void(::SharedTypes::Legacy::LevelSoundEvent, ::Vec3 const&, int, ::ActorSoundIdentifier const&, bool)>&
26 getOnLevelSoundEventConnector() = 0;
27
28 virtual ::Bedrock::PubSub::Connector<void(::std::string const&, ::Vec3 const&, float, float)>&
29 getOnLevelSoundEventWithVolumeAndPitchConnector() = 0;
30
31 virtual ::Bedrock::PubSub::Connector<void(::std::string const&)>& getOnStopLevelSoundEventConnector() = 0;
32
33 virtual ::Bedrock::PubSub::Connector<void()>& getOnStopAllLevelSoundsEventConnector() = 0;
34
35 virtual ::Bedrock::PubSub::Connector<void()>& getOnStopMusicEventConnector() = 0;
36 // NOLINTEND
37
38public:
39 // virtual function thunks
40 // NOLINTBEGIN
41
42 // NOLINTEND
43};
Definition ActorSoundIdentifier.h:17
Definition EnableNonOwnerReferences.h:7
Definition ILevelSoundManagerConnector.h:18
Definition Vec3.h:10