From 0736a2381dbde85e495f44486f9abae7c922afb3 Mon Sep 17 00:00:00 2001 From: CoCoSol007 Date: Wed, 14 Feb 2024 18:44:33 +0100 Subject: [PATCH] add \n --- crates/border-wars/src/hex.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/border-wars/src/hex.rs b/crates/border-wars/src/hex.rs index 03ae69e..83e3776 100644 --- a/crates/border-wars/src/hex.rs +++ b/crates/border-wars/src/hex.rs @@ -9,6 +9,7 @@ use partial_min_max::{max, min}; /// Represents a number that can be used in a hexagonal grid. pub trait HexNumber: Signed + PartialEq + Copy + PartialOrd + FromPrimitive {} + impl HexNumber for T {} /// Represents a position in a hexagonal grid.