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
3 changed files with 4 additions and 1 deletions
Showing only changes of commit da314d581f - Show all commits

View file

@ -2,7 +2,7 @@
use bevy::prelude::*; use bevy::prelude::*;
pub mod hex; pub mod map;
pub mod scenes; pub mod scenes;
/// The current scene of the game. /// The current scene of the game.

View file

@ -0,0 +1,3 @@
//! Contains all the map related logic.
pub mod hex;