building queue

This commit is contained in:
2024-06-28 20:28:57 -04:00
parent daa2f0bcc9
commit 805f50e40f
5 changed files with 28 additions and 2 deletions

View File

@@ -0,0 +1,4 @@
use serde::{Deserialize, Serialize};
#[derive(Default, PartialEq, Eq, Serialize, Deserialize)]
pub struct BuildingIdentifier(u32);

View File

@@ -1,3 +1,4 @@
pub mod building;
pub mod despawn;
pub mod resource;
pub mod states;