rename
All checks were successful
Rust Checks / checks (push) Successful in 3m29s
Rust Checks / checks (pull_request) Successful in 2m45s

This commit is contained in:
CoCo_Sol 2024-03-09 13:54:12 +01:00
parent eb46e4da4e
commit 79f0335637
3 changed files with 3 additions and 3 deletions

View file

@ -2,8 +2,8 @@
use bevy::prelude::*;
use border_wars::camera::CameraPlugin;
use border_wars::map::click_tile::SelectorPlugin;
use border_wars::map::renderer::RendererPlugin;
use border_wars::map::selection::SelectorPlugin;
use border_wars::scenes::ScenesPlugin;
fn main() {

View file

@ -1,4 +1,4 @@
//! All programs related to the selection of tiles.
//! All programs related to the clicking on a tile.
use bevy::prelude::*;

View file

@ -1,9 +1,9 @@
//! Contains all the logic related to the map.
pub mod click_tile;
pub mod generation;
pub mod hex;
pub mod renderer;
pub mod selection;
use bevy::prelude::*;