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.h"
7
8// auto generated forward declare list
9// clang-format off
10class BlockPos;
11namespace Scripting { struct Error; }
12// clang-format on
13
14namespace Editor::Services {
15
17public:
18 // virtual functions
19 // NOLINTBEGIN
20 // vIndex: 0
21 virtual ~EditorTickingAreaServiceProvider() = default;
22
23 // vIndex: 1
24 virtual ::Scripting::Result<bool, ::Scripting::Error>
25 requestTickingArea(::std::string const&, ::BlockPos const&, ::BlockPos const&) = 0;
26
27 // vIndex: 2
28 virtual ::Scripting::Result<bool, ::Scripting::Error> releaseTickingArea(::std::string const&) = 0;
29
30 // vIndex: 3
31 virtual ::Scripting::Result<bool, ::Scripting::Error> isTickingAreaActive(::std::string const&) = 0;
32
33 // vIndex: 4
34 virtual ::Scripting::Result<bool, ::Scripting::Error> purgeTickingAreas(::std::string const&) = 0;
35 // NOLINTEND
36
37public:
38 // destructor thunk
39 // NOLINTBEGIN
40
41 // NOLINTEND
42
43public:
44 // virtual function thunks
45 // NOLINTBEGIN
46
47 // NOLINTEND
48};
49
50} // namespace Editor::Services
Definition BlockPos.h:18
Definition EditorTickingAreaServiceProvider.h:16