LeviLamina
Loading...
Searching...
No Matches
EditorRealmsWorld.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Editor::Services {
6
7struct EditorRealmsWorld {
8public:
9 // member variables
10 // NOLINTBEGIN
13 // NOLINTEND
14
15public:
16 // prevent constructor by default
17 EditorRealmsWorld& operator=(EditorRealmsWorld const&);
18 EditorRealmsWorld();
19
20public:
21 // member functions
22 // NOLINTBEGIN
24
25#ifdef LL_PLAT_C
26 MCNAPI EditorRealmsWorld(::std::string const& worldId, ::std::string const& name);
27#endif
28
29 MCNAPI ::Editor::Services::EditorRealmsWorld& operator=(::Editor::Services::EditorRealmsWorld&&);
30
31#ifdef LL_PLAT_C
32 MCNAPI ~EditorRealmsWorld();
33#endif
34 // NOLINTEND
35
36public:
37 // constructor thunks
38 // NOLINTBEGIN
40
41#ifdef LL_PLAT_C
42 MCNAPI void* $ctor(::std::string const& worldId, ::std::string const& name);
43#endif
44 // NOLINTEND
45
46public:
47 // destructor thunk
48 // NOLINTBEGIN
49#ifdef LL_PLAT_C
50 MCNAPI void $dtor();
51#endif
52 // NOLINTEND
53};
54
55} // namespace Editor::Services
Definition EditorRealmsWorld.h:7
MCAPI::Editor::Services::EditorRealmsWorld & operator=(::Editor::Services::EditorRealmsWorld &&)
MCAPI void * $ctor(::Editor::Services::EditorRealmsWorld const &)
MCAPI EditorRealmsWorld(::Editor::Services::EditorRealmsWorld const &)
Definition Alias.h:14