LeviLamina
Loading...
Searching...
No Matches
IEventListener.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/NonOwnerPointer.h"
7
8// auto generated forward declare list
9// clang-format off
10class AppPlatform;
11namespace Social::Events { class Event; }
12// clang-format on
13
14namespace Social::Events {
15
17public:
18 // virtual functions
19 // NOLINTBEGIN
20 // vIndex: 0
21 virtual ~IEventListener();
22
23 // vIndex: 1
24 virtual void recordEvent(::Social::Events::Event const&, ::Bedrock::NonOwnerPointer<::AppPlatform> const&) = 0;
25
26 // vIndex: 2
27 virtual void sendEvents(bool) = 0;
28
29 // vIndex: 3
30 virtual int getEventTagsFilter() const = 0;
31
32 // vIndex: 4
33 virtual void stopDebugEventLogging() = 0;
34 // NOLINTEND
35
36public:
37 // destructor thunk
38 // NOLINTBEGIN
39 MCFOLD void $dtor();
40 // NOLINTEND
41
42public:
43 // virtual function thunks
44 // NOLINTBEGIN
45
46 // NOLINTEND
47
48public:
49 // vftables
50 // NOLINTBEGIN
51 MCAPI static void** $vftable();
52 // NOLINTEND
53};
54
55} // namespace Social::Events
Definition AppPlatform.h:49
Definition NonOwnerPointer.h:9
Definition Event.h:17
Definition IEventListener.h:16