LeviLamina
Loading...
Searching...
No Matches
ScriptSoundUtils.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
8namespace ScriptModuleMinecraft { struct ScriptMusicOptions; }
9// clang-format on
10
11namespace ScriptModuleMinecraft::ScriptSoundUtils {
12// functions
13// NOLINTBEGIN
14MCAPI ::std::unique_ptr<::LevelEventGenericPacket> createPlayMusicPacket(
15 ::std::string const& trackId,
16 ::std::optional<::ScriptModuleMinecraft::ScriptMusicOptions> musicOptions,
17 bool shouldQueue
18);
19
20MCAPI ::std::unique_ptr<::LevelEventGenericPacket> createStopMusicPacket();
21// NOLINTEND
22
23} // namespace ScriptModuleMinecraft::ScriptSoundUtils
Definition LevelEventGenericPacket.h:17