aboutsummaryrefslogtreecommitdiff
path: root/codegen/lib/code/shapes.py
diff options
context:
space:
mode:
Diffstat (limited to 'codegen/lib/code/shapes.py')
-rwxr-xr-xcodegen/lib/code/shapes.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/codegen/lib/code/shapes.py b/codegen/lib/code/shapes.py
index c4964fa6..a7dd58fb 100755
--- a/codegen/lib/code/shapes.py
+++ b/codegen/lib/code/shapes.py
@@ -119,10 +119,11 @@ def generate_block_shapes_code(blocks: dict, shapes: dict, block_states_report):
#![allow(clippy::explicit_auto_deref)]
#![allow(clippy::redundant_closure)]
+use std::sync::LazyLock;
+
use super::VoxelShape;
use crate::collision::{{self, Shapes}};
use azalea_block::*;
-use std::sync::LazyLock;
pub trait BlockWithShape {{
fn shape(&self) -> &'static VoxelShape;