LeviLamina
Loading...
Searching...
No Matches
SendShowStoreOfferCommand.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/network/packet/ShowStoreOfferRedirectType.h"
7#include "mc/server/commands/Command.h"
8#include "mc/server/commands/CommandSelector.h"
9
10// auto generated forward declare list
11// clang-format off
12class CommandOrigin;
13class CommandOutput;
14class CommandRegistry;
15class Player;
16// clang-format on
17
18class SendShowStoreOfferCommand : public ::Command {
19public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<8, 200, ::CommandSelector<::Player>> mTargets;
23 ::ll::TypedStorage<8, 32, ::std::string> mOffer;
24 ::ll::TypedStorage<1, 1, ::ShowStoreOfferRedirectType> mRedirectType;
25 // NOLINTEND
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30#ifdef LL_PLAT_S
31 virtual void execute(::CommandOrigin const& origin, ::CommandOutput& output) const /*override*/;
32#else // LL_PLAT_C
33 virtual void execute(::CommandOrigin const&, ::CommandOutput&) const /*override*/;
34#endif
35
36 // NOLINTEND
37
38public:
39 // static functions
40 // NOLINTBEGIN
41#ifdef LL_PLAT_S
42 MCAPI static void setup(::CommandRegistry& registry);
43#endif
44 // NOLINTEND
45
46public:
47 // virtual function thunks
48 // NOLINTBEGIN
49#ifdef LL_PLAT_S
50 MCAPI void $execute(::CommandOrigin const& origin, ::CommandOutput& output) const;
51#endif
52
53
54 // NOLINTEND
55};
Definition CommandOrigin.h:32
Definition CommandOutput.h:20
Definition CommandRegistry.h:51
Definition Player.h:137
Definition SendShowStoreOfferCommand.h:18