LeviLamina
Loading...
Searching...
No Matches
ActorAnimationEvent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/string/HashedString.h"
7#include "mc/molang/MolangVersion.h"
8#include "mc/server/commands/CurrentCmdVersion.h"
9#include "mc/util/molang/ExpressionNode.h"
10
11// auto generated forward declare list
12// clang-format off
13class Actor;
14class RenderParams;
15// clang-format on
16
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 16, ::ExpressionNode> mExpression;
22 ::ll::TypedStorage<8, 48, ::HashedString> mCommand;
23 ::ll::TypedStorage<4, 4, ::CurrentCmdVersion> mCommandVersion;
24 ::ll::TypedStorage<8, 32, ::std::string> mEvent;
25 ::ll::TypedStorage<4, 4, float> mTime;
26 // NOLINTEND
27
28public:
29 // prevent constructor by default
33
34public:
35 // member functions
36 // NOLINTBEGIN
38 float time,
39 ::std::string const& event,
40 ::CurrentCmdVersion commandVersion,
41 ::MolangVersion molangVersion
42 );
43
44 MCNAPI void fire(::RenderParams& renderParams, ::Actor* actor) const;
45
46 MCNAPI ::ActorAnimationEvent& operator=(::ActorAnimationEvent&&);
47
49 // NOLINTEND
50
51public:
52 // constructor thunks
53 // NOLINTBEGIN
54 MCNAPI void*
55 $ctor(float time, ::std::string const& event, ::CurrentCmdVersion commandVersion, ::MolangVersion molangVersion);
56 // NOLINTEND
57
58public:
59 // destructor thunk
60 // NOLINTBEGIN
61 MCNAPI void $dtor();
62 // NOLINTEND
63};
Definition ActorAnimationEvent.h:17
MCAPI void $dtor()
MCAPI ~ActorAnimationEvent()
MCAPI ActorAnimationEvent(float time, ::std::string const &event, ::CurrentCmdVersion commandVersion, ::MolangVersion molangVersion)
MCAPI void * $ctor(float time, ::std::string const &event, ::CurrentCmdVersion commandVersion, ::MolangVersion molangVersion)
MCAPI void fire(::RenderParams &renderParams, ::Actor *actor) const
MCAPI::ActorAnimationEvent & operator=(::ActorAnimationEvent &&)
Definition Actor.h:103
Definition RenderParams.h:30