Skip to content

Commit

Permalink
Rename to bevy_jam4
Browse files Browse the repository at this point in the history
  • Loading branch information
benfrankel committed Dec 1, 2023
1 parent 6395a34 commit deafe93
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "bevy_jam_template"
name = "bevy_jam4"
version = "0.1.0"
edition = "2021"
default-run = "run"
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -u
shopt -s globstar

NAME='bevy_jam_template'
NAME='bevy_jam4'
BUILD_DIR='build'

function usage() {
Expand Down
2 changes: 1 addition & 1 deletion src/bin/debug.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
use bevy::app::MainScheduleOrder;
use bevy::ecs::schedule::ScheduleLabel;
use bevy::prelude::*;
use bevy_jam_template::AppPlugin;
use bevy_jam4::AppPlugin;
use bevy_mod_debugdump::schedule_graph::Settings;
use bevy_mod_debugdump::schedule_graph_dot;

Expand Down
2 changes: 1 addition & 1 deletion src/bin/run.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use bevy::prelude::*;
use bevy_jam_template::AppPlugin;
use bevy_jam4::AppPlugin;

fn main() {
App::new().add_plugins(AppPlugin).run();
Expand Down
2 changes: 1 addition & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ impl Plugin for ConfigPlugin {
}
}

const WINDOW_TITLE: &str = "bevy_jam_template";
const WINDOW_TITLE: &str = "bevy_jam4";

// TODO: DevConfig
#[derive(Resource, Reflect, Serialize, Deserialize)]
Expand Down
2 changes: 1 addition & 1 deletion src/state/title_screen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ impl Plugin for TitleScreenStatePlugin {
}
}

const TITLE: &str = "bevy_jam_template";
const TITLE: &str = "bevy_jam4";

#[derive(AssetCollection, Resource, Reflect, Default)]
#[reflect(Resource)]
Expand Down
2 changes: 1 addition & 1 deletion web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<head>
<meta charset="utf-8" />
<title>bevy_jam_template</title>
<title>bevy_jam4</title>
<link rel="stylesheet" href="style.css" />
</head>

Expand Down

0 comments on commit deafe93

Please sign in to comment.