Changing the structure of map-related programmes #51

Merged
tipragot merged 4 commits from change-struct-map into main 2024-02-14 18:18:16 +00:00
Showing only changes of commit 56adf8b219 - Show all commits

View file

@ -39,7 +39,7 @@ impl<T: HexNumber> HexPosition<T> {
/// # Example
///
/// ```no_run
/// use border_wars::hex::HexPosition;
/// use border_wars::map::hex::HexPosition;
///
/// let a = HexPosition { q: 0, r: 0 };
/// let b = HexPosition { q: 1, r: 1 };
@ -70,7 +70,7 @@ impl<T: HexNumber + Eq + Hash + std::cmp::PartialOrd + num::ToPrimitive> HexPosi
/// # Example
///
/// ```
/// use border_wars::hex::HexPosition;
/// use border_wars::map::hex::HexPosition;
///
/// let position = HexPosition { q: 0, r: 0 };
///