refactoring hex coords
Some checks failed
Rust / build (push) Failing after 4s

This commit is contained in:
2026-03-14 19:56:01 -04:00
parent 912ee376c6
commit 13a74f7620
5 changed files with 481 additions and 0 deletions

7
engine/hex/src/tests.rs Normal file
View File

@@ -0,0 +1,7 @@
use super::prelude::*;
#[test]
fn create_coord()
{
let coord = HexCoord::from_grid_pos(3, 3);
}