LeviLamina
Loading...
Searching...
No Matches
RegionFile.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Core { class Path; }
8namespace RakNet { class BitStream; }
9// clang-format on
10
12public:
13 // member variables
14 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 RegionFile& operator=(RegionFile const&);
25 RegionFile(RegionFile const&);
26 RegionFile();
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 // vIndex: 0
32 virtual ~RegionFile() = default;
33 // NOLINTEND
34
35public:
36 // member functions
37 // NOLINTBEGIN
38 MCAPI explicit RegionFile(::Core::Path const& basePath);
39
40 MCAPI bool open();
41
42 MCAPI bool readChunk(int x, int z, ::RakNet::BitStream** destChunkData);
43 // NOLINTEND
44
45public:
46 // constructor thunks
47 // NOLINTBEGIN
48 MCAPI void* $ctor(::Core::Path const& basePath);
49 // NOLINTEND
50
51public:
52 // destructor thunk
53 // NOLINTBEGIN
54
55 // NOLINTEND
56
57public:
58 // vftables
59 // NOLINTBEGIN
60 MCAPI static void** $vftable();
61 // NOLINTEND
62};
Definition Path.h:15
Definition Path.h:16
Definition BitStream.h:7
Definition RegionFile.h:11
Definition Alias.h:14