mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-22 14:39:46 +05:00
13 lines
217 B
C++
13 lines
217 B
C++
#pragma once
|
|
class Entity;
|
|
class Chunk;
|
|
|
|
class DistanceChunkSorter
|
|
{
|
|
private:
|
|
double ix, iy, iz;
|
|
|
|
public:
|
|
DistanceChunkSorter(shared_ptr<Entity> player);
|
|
bool operator()(const Chunk *a, const Chunk *b) const;
|
|
}; |