LeviLamina
Loading...
Searching...
No Matches
AttributeModifier.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/attribute/AttributeModifierOperation.h"
7#include "mc/world/attribute/AttributeOperands.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace mce { class UUID; }
12// clang-format on
13
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<4, 4, float> mAmount;
19 ::ll::TypedStorage<4, 4, ::AttributeModifierOperation> mOperation;
20 ::ll::TypedStorage<4, 4, ::AttributeOperands> mOperand;
21 ::ll::TypedStorage<8, 32, ::std::string> mName;
22 ::ll::TypedStorage<8, 16, ::mce::UUID> mId;
23 ::ll::TypedStorage<1, 1, bool> mSerialize;
24 // NOLINTEND
25
26public:
27 // virtual functions
28 // NOLINTBEGIN
29 // vIndex: 0
30 virtual ~AttributeModifier();
31
32 // vIndex: 1
33 virtual bool isInstantaneous() const;
34 // NOLINTEND
35
36public:
37 // member functions
38 // NOLINTBEGIN
40
42 ::mce::UUID id,
43 ::std::string const& name,
44 float amount,
45 int operation,
46 int operand,
47 bool serializable
48 );
49
50 MCAPI ::AttributeModifier& operator=(::AttributeModifier const& rhs);
51 // NOLINTEND
52
53public:
54 // static variables
55 // NOLINTBEGIN
56 MCAPI static ::mce::UUID const& mInvalidUUID();
57 // NOLINTEND
58
59public:
60 // constructor thunks
61 // NOLINTBEGIN
62 MCAPI void* $ctor(::AttributeModifier const&);
63
64 MCAPI void*
65 $ctor(::mce::UUID id, ::std::string const& name, float amount, int operation, int operand, bool serializable);
66 // NOLINTEND
67
68public:
69 // destructor thunk
70 // NOLINTBEGIN
71 MCAPI void $dtor();
72 // NOLINTEND
73
74public:
75 // virtual function thunks
76 // NOLINTBEGIN
77 MCFOLD bool $isInstantaneous() const;
78 // NOLINTEND
79
80public:
81 // vftables
82 // NOLINTBEGIN
83 MCAPI static void** $vftable();
84 // NOLINTEND
85};
Definition AttributeModifier.h:14
Definition UUID.h:7