This commit is contained in:
2024-09-17 09:19:27 -04:00
parent b156a33a54
commit 5ad54ca844
10 changed files with 315 additions and 86 deletions

6
engine/data/Cargo.toml Normal file
View File

@@ -0,0 +1,6 @@
[package]
name = "data"
version = "0.1.0"
edition = "2021"
[dependencies]

1
engine/data/src/lib.rs Normal file
View File

@@ -0,0 +1 @@

View File

View File

@@ -19,6 +19,7 @@ bevy_asset_loader = { version = "0.21.0", features = [
] }
ron = "0.8.1"
image = "0.25.2"
num = "0.4.3"
[features]
tracing = ["bevy/trace_tracy"]

View File

@@ -1,3 +1,4 @@
use num::{PrimInt, Saturating};
use std::fmt::Display;
use crate::prelude::Chunk;