LeviLamina
Loading...
Searching...
No Matches
ClientCommandRegisterEvent.h
1#pragma once
2
3#include "ll/api/event/command/CommandRegisterEvent.h"
4
5namespace ll::event::inline command {
6
7class ClientCommandRegisterEvent final : public CommandRegisterEvent {
8public:
9 constexpr explicit ClientCommandRegisterEvent(CommandRegistry& commandRegistry) : CommandRegisterEvent(commandRegistry)
10 {}
11
12 LLAPI void serialize(CompoundTag&) const override;
13};
14
15} // namespace ll::event::inline command
Definition CommandRegistry.h:50
Definition CompoundTag.h:23