mindustry logic execution, map- and schematic- parsing and rendering
bump ver
| -rw-r--r-- | lemu/Cargo.toml | 2 | ||||
| -rw-r--r-- | lemu/src/executor/mod.rs | 1 |
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), |