Skip to content

Commit

Permalink
refactor: rename version_info to version_information
Browse files Browse the repository at this point in the history
Rename the `VersionInfoPlugin` to `VersionInformationPlugin`.
  • Loading branch information
ShenMian committed Jul 27, 2024
1 parent bc055b6 commit b24300b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ use events::*;
use input_map::*;
use leafwing_input_manager::prelude::*;
use plugins::performance_matrix::*;
use plugins::version_info::*;
use plugins::version_information::*;
use resources::*;
use state::*;
use systems::{audio::*, auto_move::*, auto_solve::*, input::*, level::*, render::*, ui::*};
Expand Down Expand Up @@ -72,7 +72,7 @@ fn main() {
}),
AudioPlugin,
PerformanceMatrixPlugin,
VersionInfoPlugin,
VersionInformationPlugin,
InputManagerPlugin::<Action>::default(),
))
.init_state::<AppState>()
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/mod.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pub mod performance_matrix;
pub mod version_info;
pub mod version_information;
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
use bevy::{color::palettes::css::*, prelude::*};

pub struct VersionInfoPlugin;
pub struct VersionInformationPlugin;

impl Plugin for VersionInfoPlugin {
impl Plugin for VersionInformationPlugin {
fn build(&self, app: &mut App) {
app.add_systems(Startup, setup);
}
Expand Down

0 comments on commit b24300b

Please sign in to comment.