mindustry logic execution, map- and schematic- parsing and rendering
Diffstat (limited to 'src/access.rs')
| -rw-r--r-- | src/access.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/access.rs b/src/access.rs index ad23b51..561d82c 100644 --- a/src/access.rs +++ b/src/access.rs @@ -3,6 +3,7 @@ use std::borrow::Borrow; use std::cmp::Ordering; use std::fmt; use std::hash::{Hash, Hasher}; + use std::ops::Deref; pub type BoxAccess<'a, D> = Access<'a, Box<D>, D>; |