Files
MinecraftConsoles/Minecraft.World/ZoneIo.h
void_17 b9a2951901 Revert "Get rid of MSVC's __int64"
This reverts commit d63f79325f.
2026-03-02 17:39:35 +07:00

20 lines
308 B
C++

#pragma once
#include "ZonedChunkStorage.h"
class ByteBuffer;
class ZoneIo
{
private:
HANDLE channel;
__int64 pos;
public:
ZoneIo(HANDLE channel, __int64 pos);
void write(byteArray bb, int size);
void write(ByteBuffer *bb, int size);
ByteBuffer *read(int size);
void flush();
};