LeviLamina
Loading...
Searching...
No Matches
Music.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/sound/Category.h"
7#include "mc/deps/core/utility/EnableNonOwnerReferences.h"
8
10public:
11 // member variables
12 // NOLINTBEGIN
13 ::ll::TypedStorage<4, 4, ::Category> mCategory;
14 ::ll::TypedStorage<8, 32, ::std::string> mName;
15 ::ll::TypedStorage<8, 32, ::std::string> mEventName;
16 ::ll::TypedStorage<4, 4, int> mMinDelay;
17 ::ll::TypedStorage<4, 4, int> mMaxDelay;
18 ::ll::TypedStorage<1, 1, bool> mPaused;
19 ::ll::TypedStorage<4, 4, float> mVolume;
20 ::ll::TypedStorage<4, 4, float> mFadeoutSeconds;
21 ::ll::TypedStorage<1, 1, bool> mPlaylist;
22 ::ll::TypedStorage<4, 4, uint> mPlaylistIndex;
23 ::ll::TypedStorage<8, 24, ::std::vector<::std::string>> mOverrideInterruptibleCategories;
24 ::ll::TypedStorage<1, 1, bool> mInitialized;
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 Music();
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 virtual ~Music() /*override*/;
35
36 virtual bool hasTracks() const;
37
38 virtual void nextTrack();
39
40 virtual void setActive(bool active);
41 // NOLINTEND
42
43public:
44 // member functions
45 // NOLINTBEGIN
46 MCAPI Music(::Category category, ::std::string const& name);
47 // NOLINTEND
48
49public:
50 // constructor thunks
51 // NOLINTBEGIN
52 MCAPI void* $ctor(::Category category, ::std::string const& name);
53 // NOLINTEND
54
55public:
56 // destructor thunk
57 // NOLINTBEGIN
58 MCAPI void $dtor();
59 // NOLINTEND
60
61public:
62 // virtual function thunks
63 // NOLINTBEGIN
64 MCFOLD bool $hasTracks() const;
65
66 MCFOLD void $nextTrack();
67
68 MCFOLD void $setActive(bool active);
69 // NOLINTEND
70
71public:
72 // vftables
73 // NOLINTBEGIN
74 MCNAPI static void** $vftable();
75 // NOLINTEND
76};
Definition EnableNonOwnerReferences.h:7
Definition Music.h:5
static MCAPI void ** $vftable()