mindustry logic execution, map- and schematic- parsing and rendering
Diffstat (limited to 'src/block/logic.rs')
| -rw-r--r-- | src/block/logic.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/block/logic.rs b/src/block/logic.rs index e9e0fdf..027302b 100644 --- a/src/block/logic.rs +++ b/src/block/logic.rs @@ -1,3 +1,4 @@ +//! logic processors and stuff use std::any::Any; use std::borrow::Cow; use std::error::Error; @@ -18,6 +19,7 @@ use crate::data::{self, DataRead, DataWrite, GridPos}; use crate::item::storage::Storage; make_register! { + // todo reinforced proc "message" => MessageLogic::new(1, true, cost!(Copper: 5, Graphite: 5)); "switch" => SwitchLogic::new(1, true, cost!(Copper: 5, Graphite: 5)); "micro-processor" => ProcessorLogic::new(1, true, cost!(Copper: 90, Lead: 50, Silicon: 50)); |