This commit is contained in:
Sijmen 2021-06-02 16:58:55 +02:00
parent c91d6a851e
commit d2ff642b3b
Signed by: vijfhoek
GPG key ID: 82D05C89B28B0DAE
2 changed files with 1 additions and 1 deletions

View file

@ -4,6 +4,7 @@ use crate::{geometry::Geometry, quad::Quad, vertex::BlockVertex};
use ahash::{AHashMap, AHashSet}; use ahash::{AHashMap, AHashSet};
use cgmath::Vector3; use cgmath::Vector3;
use noise::utils::{NoiseMapBuilder, PlaneMapBuilder}; use noise::utils::{NoiseMapBuilder, PlaneMapBuilder};
use rayon::iter::{IntoParallelIterator, ParallelIterator};
#[allow(dead_code)] #[allow(dead_code)]
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]

View file

@ -2,7 +2,6 @@ mod aabb;
mod camera; mod camera;
mod chunk; mod chunk;
mod geometry; mod geometry;
mod npc;
mod quad; mod quad;
mod render_context; mod render_context;
mod state; mod state;