Make world rendering work.

This commit is contained in:
Signal 2025-12-19 01:11:03 -05:00
parent d99b70eaa1
commit 48d055e889
22 changed files with 438 additions and 82 deletions

18
src/server/ServerPlayer.h Normal file
View file

@ -0,0 +1,18 @@
#pragma once
#include <glm.hpp>
namespace Artifact {
class ServerPlayer {
public:
ServerPlayer();
glm::ivec3 lastChunkPos;
glm::vec3 pos;
double pitch;
double yaw;
int viewRange = 4;
};
}