LeviLamina
Loading...
Searching...
No Matches
ActorPropertiesDescription.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/DefintionDescription.h"
7
8// auto generated forward declare list
9// clang-format off
10class PropertyGroup;
11// clang-format on
12
13struct ActorPropertiesDescription : public ::DefintionDescription {
14public:
15 // member variables
16 // NOLINTBEGIN
17 ::ll::TypedStorage<8, 16, ::std::shared_ptr<::PropertyGroup const>> mPropertyGroup;
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 ActorPropertiesDescription(ActorPropertiesDescription const&);
23 ActorPropertiesDescription();
24
25public:
26 // virtual functions
27 // NOLINTBEGIN
28 virtual char const* getJsonName() const /*override*/;
29
30 virtual ~ActorPropertiesDescription() /*override*/;
31 // NOLINTEND
32
33public:
34 // member functions
35 // NOLINTBEGIN
36 MCFOLD ::ActorPropertiesDescription& operator=(::ActorPropertiesDescription const&);
37 // NOLINTEND
38
39public:
40 // destructor thunk
41 // NOLINTBEGIN
42 MCFOLD void $dtor();
43 // NOLINTEND
44
45public:
46 // virtual function thunks
47 // NOLINTBEGIN
48 MCAPI char const* $getJsonName() const;
49
50
51 // NOLINTEND
52
53public:
54 // vftables
55 // NOLINTBEGIN
56 MCAPI static void** $vftable();
57 // NOLINTEND
58};
Definition PropertyGroup.h:21
Definition DefintionDescription.h:5