Remove internal server cuz we have it in the networking branch.

Minor refactoring (changed all Chunk* world or Chunk world[] to World world)
This commit is contained in:
milkwx3
2026-06-24 16:00:56 +03:00
parent cf53a42620
commit 3ad54bd59d
13 changed files with 137 additions and 522 deletions
+1 -1
View File
@@ -65,7 +65,7 @@ static void DrawParticle(Particle particle, Color color)
rlSetTexture(0);
}
void ParticlesUpdate(float dt, Chunk world[]) {
void ParticlesUpdate(float dt, World &world) {
particles.remove_if([](Particle x) { return x.lifetime > 200; });
for (Particle &part : particles)
{