LeviLamina
Loading...
Searching...
No Matches
IMapDataManagerOptions.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class BlockPos;
8// clang-format on
9
11public:
12 // virtual functions
13 // NOLINTBEGIN
14 virtual ~IMapDataManagerOptions() = default;
15
16 virtual bool isPremiumWorldTemplate() const = 0;
17
18 virtual bool isLegacyLevel() const = 0;
19
20 virtual bool hasMapsCenteredToOrigin() const = 0;
21
22 virtual ::BlockPos const& getWorldCenter() const = 0;
23 // NOLINTEND
24
25public:
26 // virtual function thunks
27 // NOLINTBEGIN
28
29 // NOLINTEND
30};
Definition BlockPos.h:19
Definition IMapDataManagerOptions.h:10