LeviLamina
Loading...
Searching...
No Matches
ScriptRealmsEventListener.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/events/EventListenerDispatcher.h"
7#include "mc/world/events/EventResult.h"
8#include "mc/world/events/LevelEventListener.h"
9
10namespace ScriptModuleMinecraftRealms {
11
12class ScriptRealmsEventListener : public ::EventListenerDispatcher<::LevelEventListener> {
13public:
14 // member variables
15 // NOLINTBEGIN
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 ScriptRealmsEventListener& operator=(ScriptRealmsEventListener const&);
23 ScriptRealmsEventListener(ScriptRealmsEventListener const&);
24 ScriptRealmsEventListener();
25
26public:
27 // virtual functions
28 // NOLINTBEGIN
29 virtual ::EventResult onRealmsStory(::std::string const&) /*override*/;
30 // NOLINTEND
31
32public:
33 // virtual function thunks
34 // NOLINTBEGIN
35
36 // NOLINTEND
37};
38
39} // namespace ScriptModuleMinecraftRealms
Definition EventListenerDispatcher.h:6
Definition Alias.h:14