Images of plates creating and drawing

This commit is contained in:
2026-07-03 10:16:36 +03:00
parent 9372c1ae56
commit bee1573e3d
6 changed files with 175 additions and 60 deletions
+16
View File
@@ -0,0 +1,16 @@
use bevy::prelude::*;
use crate::collision_world::CollisionWorld;
use crate::hex_table::HexTable;
use crate::table::Table;
#[derive(Component)]
pub struct Plate{
}
#[derive(Component)]
pub struct CollisionAutomation {
pub world: CollisionWorld<u8>,
pub view: Table<u8>,
pub border: HexTable<u8>,
}