LeviLamina
Loading...
Searching...
No Matches
CommandResponseBase.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/CommandOriginSystem.h"
7
8// auto generated forward declare list
9// clang-format off
10class ILevel;
11class RenderParams;
12// clang-format on
13
14class CommandResponseBase {
15public:
16 // member variables
17 // NOLINTBEGIN
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
28 CommandResponseBase& operator=(CommandResponseBase const&);
29 CommandResponseBase(CommandResponseBase const&);
30 CommandResponseBase();
31
32public:
33 // virtual functions
34 // NOLINTBEGIN
35 virtual ~CommandResponseBase() = default;
36
37 virtual ::CommandOriginSystem _getCommandOriginSystem() const;
38 // NOLINTEND
39
40public:
41 // member functions
42 // NOLINTBEGIN
43 MCNAPI void _addCommand(::std::string const& entry);
44
45 MCNAPI void _compileCommands(::ILevel& level) const;
46
47 MCNAPI void _executeAction(::RenderParams& params) const;
48 // NOLINTEND
49
50public:
51 // static variables
52 // NOLINTBEGIN
53 MCNAPI static ::std::string const& NameID();
54 // NOLINTEND
55
56public:
57 // virtual function thunks
58 // NOLINTBEGIN
59 MCNAPI ::CommandOriginSystem $_getCommandOriginSystem() const;
60
61
62 // NOLINTEND
63};
MCAPI void _addCommand(::std::string const &entry)
MCAPI void _executeAction(::RenderParams &params) const
MCAPI void _compileCommands(::ILevel &level) const
static MCAPI ::std::string const & NameID()
MCAPI::CommandOriginSystem $_getCommandOriginSystem() const
Definition ILevel.h:218
Definition RenderParams.h:30
Definition Alias.h:14