mindustry logic execution, map- and schematic- parsing and rendering
Diffstat (limited to 'lemu/src/code.rs')
| -rw-r--r-- | lemu/src/code.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lemu/src/code.rs b/lemu/src/code.rs index 9132279..bf9f58e 100644 --- a/lemu/src/code.rs +++ b/lemu/src/code.rs @@ -5,8 +5,8 @@ use super::{ #[derive(Debug)] pub enum PInstr<'s> { - Instr(Instr<'s>), - Draw(DrawInstr<'s>), + Instr(Instr), + Draw(DrawInstr), Code(Box<[Token<'s>]>), Comment(&'s str), } |