LeviLamina
Loading...
Searching...
No Matches
RakDataInput.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/platform/Result.h"
7#include "mc/util/BytesDataInput.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace RakNet { class BitStream; }
12// clang-format on
13
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<8, 8, ::RakNet::BitStream&> mBitStream;
19 // NOLINTEND
20
21public:
22 // virtual functions
23 // NOLINTBEGIN
24 // vIndex: 9
25 virtual ::Bedrock::Result<void> readBytesResult(void* data, uint64 bytes) /*override*/;
26
27 // vIndex: 10
28 virtual uint64 numBytesLeft() const /*override*/;
29
30 // vIndex: 0
31 virtual ~RakDataInput() /*override*/;
32 // NOLINTEND
33
34public:
35 // destructor thunk
36 // NOLINTBEGIN
37 MCFOLD void $dtor();
38 // NOLINTEND
39
40public:
41 // virtual function thunks
42 // NOLINTBEGIN
43 MCAPI ::Bedrock::Result<void> $readBytesResult(void* data, uint64 bytes);
44
45 MCAPI uint64 $numBytesLeft() const;
46 // NOLINTEND
47
48public:
49 // vftables
50 // NOLINTBEGIN
51 MCAPI static void** $vftable();
52 // NOLINTEND
53};
Definition BytesDataInput.h:9
Definition RakDataInput.h:14