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
11class RegionFile {
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 virtual ~RegionFile();
32 // NOLINTEND
33
34public:
35 // member functions
36 // NOLINTBEGIN
37 MCNAPI explicit RegionFile(::Core::Path const& basePath);
38
39 MCNAPI bool open();
40
41 MCNAPI bool readChunk(int x, int z, ::RakNet::BitStream** destChunkData);
42 // NOLINTEND
43
44public:
45 // constructor thunks
46 // NOLINTBEGIN
47 MCNAPI void* $ctor(::Core::Path const& basePath);
48 // NOLINTEND
49
50public:
51 // destructor thunk
52 // NOLINTBEGIN
53 MCNAPI void $dtor();
54 // NOLINTEND
55
56public:
57 // vftables
58 // NOLINTBEGIN
59 MCNAPI static void** $vftable();
60 // NOLINTEND
61};
Definition Path.h:12
Definition BitStream.h:7
MCAPI RegionFile(::Core::Path const &basePath)
MCAPI void * $ctor(::Core::Path const &basePath)
static MCAPI void ** $vftable()
MCAPI void $dtor()
MCAPI bool readChunk(int x, int z, ::RakNet::BitStream **destChunkData)
MCAPI bool open()
Definition Alias.h:14