LeviLamina
Loading...
Searching...
No Matches
ReplicatedObjectInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class HashedString;
8// clang-format on
9
10namespace Editor::Network {
11
12struct ReplicatedObjectInfo {
13public:
14 // member variables
15 // NOLINTBEGIN
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 ReplicatedObjectInfo();
24
25public:
26 // member functions
27 // NOLINTBEGIN
29
31
32 MCNAPI ReplicatedObjectInfo(::HashedString id, uint typeHash, ::std::string&& data);
33
35
37
38 MCNAPI bool operator==(::Editor::Network::ReplicatedObjectInfo const& other) const;
39
41 // NOLINTEND
42
43public:
44 // constructor thunks
45 // NOLINTBEGIN
47
49
50 MCNAPI void* $ctor(::HashedString id, uint typeHash, ::std::string&& data);
51 // NOLINTEND
52
53public:
54 // destructor thunk
55 // NOLINTBEGIN
56 MCNAPI void $dtor();
57 // NOLINTEND
58};
59
60} // namespace Editor::Network
Definition HashedString.h:5
Definition ReplicatedObjectInfo.h:12
MCAPI ReplicatedObjectInfo(::HashedString id, uint typeHash, ::std::string &&data)
MCAPI void * $ctor(::Editor::Network::ReplicatedObjectInfo const &other)
MCAPI void * $ctor(::HashedString id, uint typeHash, ::std::string &&data)
MCAPI ReplicatedObjectInfo(::Editor::Network::ReplicatedObjectInfo &&other)
MCAPI void operator=(::Editor::Network::ReplicatedObjectInfo const &other)
MCAPI ReplicatedObjectInfo(::Editor::Network::ReplicatedObjectInfo const &other)
MCAPI void * $ctor(::Editor::Network::ReplicatedObjectInfo &&other)
MCAPI bool operator==(::Editor::Network::ReplicatedObjectInfo const &other) const
MCAPI void operator=(::Editor::Network::ReplicatedObjectInfo &&other)
Definition Alias.h:14