LeviLamina
Loading...
Searching...
No Matches
PlayerEvent.h
1#pragma once
2
3#include "ll/api/event/entity/MobEvent.h"
4
5#include "mc/world/actor/player/Player.h"
6
7namespace ll::event::inline player {
8
9class PlayerEvent : public MobEvent {
10protected:
11 constexpr explicit PlayerEvent(Player& player) : MobEvent(player) {}
12
13public:
14 LLAPI void serialize(CompoundTag&) const override;
15
16 LLNDAPI Player& self() const;
17};
18} // namespace ll::event::inline player
Definition CompoundTag.h:13
Definition MobEvent.h:5
Definition Player.h:119
Definition PlayerEvent.h:9
Definition serialize.h:11