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 ::ll::TypedStorage<8, 32, ::std::string> mLocale;
26 // NOLINTEND
27
28public:
29 // prevent constructor by default
30 ScriptClientSystemInfo& operator=(ScriptClientSystemInfo const&);
31 ScriptClientSystemInfo();
32
33public:
34 // member functions
35 // NOLINTBEGIN
36 MCAPI ScriptClientSystemInfo(::ScriptModuleMinecraft::ScriptClientSystemInfo const&);
37
38 MCAPI explicit ScriptClientSystemInfo(::Player const& player);
39
40 MCAPI ::ScriptModuleMinecraft::ScriptClientSystemInfo& operator=(::ScriptModuleMinecraft::ScriptClientSystemInfo&&);
41 // NOLINTEND
42
43public:
44 // static functions
45 // NOLINTBEGIN
46 MCAPI static ::Scripting::ClassBinding bind();
47 // NOLINTEND
48
49public:
50 // constructor thunks
51 // NOLINTBEGIN
53
54 MCAPI void* $ctor(::Player const& player);
55 // NOLINTEND
56
57public:
58 // vftables
59 // NOLINTBEGIN
60 MCNAPI static void** $vftable();
61 // NOLINTEND
62};
63
64} // namespace ScriptModuleMinecraft
Definition Player.h:136
Definition ScriptClientSystemInfo.h:18
Definition ScriptSystemInfo.h:15
Definition ClassBinding.h:19