LeviLamina
Loading...
Searching...
No Matches
ChunkViewOwner.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/common/SubClientId.h"
7#include "mc/network/NetworkIdentifier.h"
8
9class ChunkViewOwner {
10public:
11 // member variables
12 // NOLINTBEGIN
13 ::ll::TypedStorage<8, 176, ::NetworkIdentifier> mNetworkIdentifier;
14 ::ll::TypedStorage<1, 1, ::SubClientId> mSubClientId;
15 // NOLINTEND
16
17public:
18 // prevent constructor by default
19 ChunkViewOwner& operator=(ChunkViewOwner const&);
20 ChunkViewOwner();
21
22public:
23 // member functions
24 // NOLINTBEGIN
25 MCAPI ChunkViewOwner(::ChunkViewOwner const& copy);
26
27 MCAPI ChunkViewOwner(::NetworkIdentifier const& networkId, ::SubClientId id);
28
29 MCAPI uint64 getHash() const;
30 // NOLINTEND
31
32public:
33 // constructor thunks
34 // NOLINTBEGIN
35 MCAPI void* $ctor(::ChunkViewOwner const& copy);
36
37 MCAPI void* $ctor(::NetworkIdentifier const& networkId, ::SubClientId id);
38 // NOLINTEND
39};
Definition NetworkIdentifier.h:10