From f4cc4df6df24b1ff6a5537fc811e4930ca57256a Mon Sep 17 00:00:00 2001 From: Bash <> Date: Sat, 10 Feb 2024 20:34:08 +1100 Subject: [PATCH] Make DemoTick field public. --- src/demo/data/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/demo/data/mod.rs b/src/demo/data/mod.rs index 35a31f4..1ee3608 100644 --- a/src/demo/data/mod.rs +++ b/src/demo/data/mod.rs @@ -241,7 +241,7 @@ impl Sub for ServerTick { Default, Display, )] -pub struct DemoTick(u32); +pub struct DemoTick(pub u32); impl DemoTick { pub fn range_inclusive(&self, till: Self) -> impl Iterator {