mindustry logic execution, map- and schematic- parsing and rendering
Diffstat (limited to 'src/block/fluid.rs')
| -rw-r--r-- | src/block/fluid.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/block/fluid.rs b/src/block/fluid.rs index 9f57ff0..41a4eeb 100644 --- a/src/block/fluid.rs +++ b/src/block/fluid.rs @@ -103,6 +103,14 @@ impl BlockLogic for FluidBlock Box::new(Self::create_state(*state)) } + fn mirror_state(&self, _: &mut dyn Any, _: bool, _: bool) + { + } + + fn rotate_state(&self, _: &mut dyn Any, _: bool) + { + } + fn serialize_state(&self, state: &dyn Any) -> Result<DynData, SerializeError> { match Self::get_state(state) |