aboutsummaryrefslogtreecommitdiff
path: root/evc/src/block.rs
diff options
context:
space:
mode:
Diffstat (limited to 'evc/src/block.rs')
-rw-r--r--evc/src/block.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/evc/src/block.rs b/evc/src/block.rs
index 05ff56d..261882a 100644
--- a/evc/src/block.rs
+++ b/evc/src/block.rs
@@ -5,8 +5,8 @@ use crate::{
#[derive(Clone, Debug)]
pub struct Block {
- size: (usize, usize),
- inner: BlockInner,
+ pub size: (usize, usize),
+ pub inner: BlockInner,
}
#[derive(Clone, Debug)]