LeviLamina
Loading...
Searching...
No Matches
EditorBootstrapper.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/EnableNonOwnerReferences.h"
7
8// auto generated forward declare list
9// clang-format off
10class LevelData;
11namespace Bedrock { class ActivationArguments; }
12// clang-format on
13
14class EditorBootstrapper : public ::Bedrock::EnableNonOwnerReferences {
15public:
16 // member variables
17 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 EditorBootstrapper& operator=(EditorBootstrapper const&);
25 EditorBootstrapper(EditorBootstrapper const&);
26 EditorBootstrapper();
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 virtual ~EditorBootstrapper() /*override*/ = default;
32 // NOLINTEND
33
34public:
35 // member functions
36 // NOLINTBEGIN
38
39 MCNAPI_S void processLoadedLevel(::LevelData& levelData, bool levelLoadSucceeded);
40 // NOLINTEND
41
42public:
43 // static variables
44 // NOLINTBEGIN
45 MCNAPI static ::std::string const& EDITOR_MODE_ARGUMENT_KEY();
46
47 MCNAPI static ::std::string const& EDITOR_MODE_ARGUMENT_VALUE();
48 // NOLINTEND
49
50public:
51 // vftables
52 // NOLINTBEGIN
53 MCNAPI static void** $vftable();
54 // NOLINTEND
55};
Definition ActivationArguments.h:7
Definition EnableNonOwnerReferences.h:7
static MCAPI ::std::string const & EDITOR_MODE_ARGUMENT_KEY()
static MCAPI void ** $vftable()
MCAPI void processActivationArguments(::Bedrock::ActivationArguments const &args)
static MCAPI ::std::string const & EDITOR_MODE_ARGUMENT_VALUE()
Definition LevelData.h:50
Definition Alias.h:14