LeviLamina
Loading...
Searching...
No Matches
ScriptTickingAreasErrorGenerator.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace ScriptModuleMinecraft { struct ScriptTickingAreaError; }
8// clang-format on
9
10namespace ScriptModuleMinecraft {
11
13public:
14 // static functions
15 // NOLINTBEGIN
16 MCAPI static ::ScriptModuleMinecraft::ScriptTickingAreaError
17 createIdentifierAlreadyExistsError(::std::string const& identifier);
18
19 MCAPI static ::ScriptModuleMinecraft::ScriptTickingAreaError
20 createOverChunkLimitError(::std::string const& identifier, int chunkMaxCount);
21
22 MCAPI static ::ScriptModuleMinecraft::ScriptTickingAreaError
23 createSideLengthExceededError(int chunkLengthX, int chunkLengthZ, int maxChunkLength);
24
25 MCAPI static ::ScriptModuleMinecraft::ScriptTickingAreaError
26 createUnknownIdentifierError(::std::string const& identifier);
27 // NOLINTEND
28};
29
30} // namespace ScriptModuleMinecraft
Definition ScriptTickingAreaError.h:16
Definition ScriptTickingAreasErrorGenerator.h:12