mindustry logic execution, map- and schematic- parsing and rendering
bump ver
bendn 2023-11-11
parent ee1cab3 · commit 117a5a5
-rw-r--r--lemu/Cargo.toml2
-rw-r--r--lemu/src/executor/mod.rs1
2 files changed, 2 insertions, 1 deletions
diff --git a/lemu/Cargo.toml b/lemu/Cargo.toml
index 2db8388..b0d8ef8 100644
--- a/lemu/Cargo.toml
+++ b/lemu/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "lemu"
-version = "0.2.15"
+version = "0.2.17"
edition = "2021"
description = "M-LOG runner"
authors = ["bend-n <[email protected]>"]
diff --git a/lemu/src/executor/mod.rs b/lemu/src/executor/mod.rs
index b855dc9..a372f63 100644
--- a/lemu/src/executor/mod.rs
+++ b/lemu/src/executor/mod.rs
@@ -158,6 +158,7 @@ pub struct ExecutorContext<'strings, W: Write> {
}
/// State of a display.
+#[derive(Debug)]
pub struct DisplayState {
/// Color to draw
pub color: (u8, u8, u8, u8),