LeviLamina
Loading...
Searching...
No Matches
ScriptClientSystemInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/platform/PlatformType.h"
7#include "mc/deps/ecs/WeakEntityRef.h"
8#include "mc/scripting/modules/minecraft/device/ScriptSystemInfo.h"
9
10// auto generated forward declare list
11// clang-format off
12class Player;
13namespace Scripting { struct ClassBinding; }
14// clang-format on
15
16namespace ScriptModuleMinecraft {
17
18class ScriptClientSystemInfo : public ::ScriptModuleMinecraft::ScriptSystemInfo {
19public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<8, 24, ::WeakEntityRef> mPlayerRef;
23 ::ll::TypedStorage<4, 4, ::PlatformType> mPlatformType;
24 ::ll::TypedStorage<4, 4, int> mMaxRenderDistance;
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 ScriptClientSystemInfo& operator=(ScriptClientSystemInfo const&);
30 ScriptClientSystemInfo(ScriptClientSystemInfo const&);
31 ScriptClientSystemInfo();
32
33public:
34 // virtual functions
35 // NOLINTBEGIN
36 virtual ~ScriptClientSystemInfo() /*override*/ = default;
37 // NOLINTEND
38
39public:
40 // member functions
41 // NOLINTBEGIN
42 MCAPI explicit ScriptClientSystemInfo(::Player const& player);
43
44 MCAPI ::ScriptModuleMinecraft::ScriptClientSystemInfo& operator=(::ScriptModuleMinecraft::ScriptClientSystemInfo&&);
45 // NOLINTEND
46
47public:
48 // static functions
49 // NOLINTBEGIN
50 MCAPI static ::Scripting::ClassBinding bind();
51 // NOLINTEND
52
53public:
54 // constructor thunks
55 // NOLINTBEGIN
56 MCAPI void* $ctor(::Player const& player);
57 // NOLINTEND
58
59public:
60 // vftables
61 // NOLINTBEGIN
62 MCNAPI static void** $vftable();
63 // NOLINTEND
64};
65
66} // namespace ScriptModuleMinecraft
Definition Player.h:125
Definition ScriptClientSystemInfo.h:18
Definition ScriptSystemInfo.h:15
Definition ClassBinding.h:19