LeviLamina
Loading...
Searching...
No Matches
ActorPuvInput.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/json/Value.h"
7#include "mc/deps/puv/Input.h"
8
9// auto generated forward declare list
10// clang-format off
11class SemVersion;
12// clang-format on
13
14namespace JsonComponentGlueUtils {
15
16class ActorPuvInput : public ::Puv::Input {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 16, ::Json::Value> mJsonValue;
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 ActorPuvInput();
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 virtual ::SemVersion version() const /*override*/;
31
32 virtual ::Puv::Input::Data data() const /*override*/;
33 // NOLINTEND
34
35public:
36 // member functions
37 // NOLINTBEGIN
38 MCAPI explicit ActorPuvInput(::Json::Value value);
39 // NOLINTEND
40
41public:
42 // constructor thunks
43 // NOLINTBEGIN
44 MCAPI void* $ctor(::Json::Value value);
45 // NOLINTEND
46
47public:
48 // virtual function thunks
49 // NOLINTBEGIN
50 MCFOLD ::SemVersion $version() const;
51
52 MCFOLD ::Puv::Input::Data $data() const;
53
54
55 // NOLINTEND
56
57public:
58 // vftables
59 // NOLINTBEGIN
60 MCNAPI static void** $vftable();
61 // NOLINTEND
62};
63
64} // namespace JsonComponentGlueUtils
Definition Value.h:16
Definition Input.h:15
Definition SemVersion.h:15