LeviLamina
Loading...
Searching...
No Matches
AllowListEntry.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/platform/UUID.h"
7#include "mc/server/IJsonSerializable.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace Json { class Value; }
12// clang-format on
13
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<8, 32, ::std::string> mName;
19 ::ll::TypedStorage<8, 16, ::mce::UUID> mUuid;
20 ::ll::TypedStorage<8, 32, ::std::string> mXuid;
21 ::ll::TypedStorage<1, 1, bool> mIgnoresPlayerLimit;
22 // NOLINTEND
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 virtual void serialize(::Json::Value& root) /*override*/;
28
29 virtual void deserialize(::Json::Value& root) /*override*/;
30
31 virtual ~AllowListEntry() /*override*/;
32 // NOLINTEND
33
34public:
35 // destructor thunk
36 // NOLINTBEGIN
37 MCNAPI void $dtor();
38 // NOLINTEND
39
40public:
41 // virtual function thunks
42 // NOLINTBEGIN
43 MCNAPI void $serialize(::Json::Value& root);
44
45 MCNAPI void $deserialize(::Json::Value& root);
46
47
48 // NOLINTEND
49
50public:
51 // vftables
52 // NOLINTBEGIN
53 MCNAPI static void** $vftable();
54 // NOLINTEND
55};
Definition AllowListEntry.h:14
MCAPI void $deserialize(::Json::Value &root)
MCAPI void $serialize(::Json::Value &root)
static MCAPI void ** $vftable()
MCAPI void $dtor()
Definition IJsonSerializable.h:10
Definition Value.h:16