4jcraft/Minecraft.Client/Rendering/Culling/DistanceChunkSorter.h
Tropical 43a28fc490
Merge pull request #71 from 4jcraft/refactor/no-std-wildcard
refactor: remove `using namespace std`
2026-03-08 10:09:33 -05:00

13 lines
222 B
C++

#pragma once
class Entity;
class Chunk;
class DistanceChunkSorter
{
private:
double ix, iy, iz;
public:
DistanceChunkSorter(std::shared_ptr<Entity> player);
bool operator()(const Chunk *a, const Chunk *b) const;
};