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 MCNAPI explicit RegionFile(::Core::Path const& basePath);
39
40 MCNAPI bool open();
41
42 MCNAPI bool readChunk(int x, int z, ::RakNet::BitStream** destChunkData);
43 // NOLINTEND
44
45public:
46 // constructor thunks
47 // NOLINTBEGIN
48 MCNAPI void* $ctor(::Core::Path const& basePath);
49 // NOLINTEND
50
51public:
52 // vftables
53 // NOLINTBEGIN
54 MCNAPI static void** $vftable();
55 // NOLINTEND
56};
Definition Path.h:17
Definition Path.h:16
Definition BitStream.h:7
Definition RegionFile.h:11
MCAPI RegionFile(::Core::Path const &basePath)
MCAPI void * $ctor(::Core::Path const &basePath)
static MCAPI void ** $vftable()
MCAPI bool readChunk(int x, int z, ::RakNet::BitStream **destChunkData)
MCAPI bool open()
Definition Alias.h:14