LeviLamina
Loading...
Searching...
No Matches
EditorTickingAreaServiceProvider.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/scripting/runtime/Result_deprecated.h"
7
8// auto generated forward declare list
9// clang-format off
10class BlockPos;
11// clang-format on
12
13namespace Editor::Services {
14
16public:
17 // virtual functions
18 // NOLINTBEGIN
19 // vIndex: 0
20 virtual ~EditorTickingAreaServiceProvider() = default;
21
22 // vIndex: 1
23 virtual ::Scripting::Result_deprecated<bool>
24 requestTickingArea(::std::string const&, ::BlockPos const&, ::BlockPos const&) = 0;
25
26 // vIndex: 2
27 virtual ::Scripting::Result_deprecated<bool> releaseTickingArea(::std::string const&) = 0;
28
29 // vIndex: 3
30 virtual ::Scripting::Result_deprecated<bool> isTickingAreaActive(::std::string const&) = 0;
31
32 // vIndex: 4
33 virtual ::Scripting::Result_deprecated<bool> purgeTickingAreas(::std::string const&) = 0;
34 // NOLINTEND
35
36public:
37 // virtual function thunks
38 // NOLINTBEGIN
39
40 // NOLINTEND
41};
42
43} // namespace Editor::Services
Definition BlockPos.h:18
Definition EditorTickingAreaServiceProvider.h:15