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
15class Vec3;
16namespace Bedrock::PubSub::ThreadModel { struct MultiThreaded; }
17// clang-format on
18
20public:
21 // virtual functions
22 // NOLINTBEGIN
23 virtual ~ILevelSoundManagerConnector() /*override*/ = default;
24
25 virtual ::Bedrock::PubSub::Connector<
26 void(::SharedTypes::Legacy::LevelSoundEvent, ::Vec3 const&, int, ::ActorSoundIdentifier const&, bool)>&
27 getOnLevelSoundEventConnector() = 0;
28
29 virtual ::Bedrock::PubSub::Connector<
30 void(::std::string const&, ::Vec3 const&, float, float, ::std::optional<::ServerSoundHandle>)>&
31 getOnLevelSoundEventWithVolumeAndPitchConnector() = 0;
32
33 virtual ::Bedrock::PubSub::Connector<void(::std::string const&)>& getOnStopLevelSoundEventConnector() = 0;
34
35 virtual ::Bedrock::PubSub::Connector<void()>& getOnStopAllLevelSoundsEventConnector() = 0;
36
37 virtual ::Bedrock::PubSub::Connector<void()>& getOnStopMusicEventConnector() = 0;
38 // NOLINTEND
39
40public:
41 // virtual function thunks
42 // NOLINTBEGIN
43
44 // NOLINTEND
45};
Definition ActorSoundIdentifier.h:17
Definition EnableNonOwnerReferences.h:7
Definition ILevelSoundManagerConnector.h:19
Definition ServerSoundHandle.h:5
Definition Vec3.h:10