Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
CyprienGille committed Dec 3, 2023
1 parent fd80f08 commit 60752e6
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
6 changes: 3 additions & 3 deletions 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,6 +1,6 @@
[package]
name = "labby"
version = "0.4.0"
version = "1.0.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
9 changes: 6 additions & 3 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// if not in debug builds, tell windows to not pop up a terminal too
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]

mod actors;
mod board;
mod board_selector;
Expand Down Expand Up @@ -55,10 +58,10 @@ pub struct GridPosition {

fn main() {
App::new()
//bevy Built-ins
//Built-ins
.insert_resource(ClearColor(BACKGROUND_COLOR))
.add_plugins(DefaultPlugins)
// User Resources
// Custom Resources
.insert_resource(GameSettings {
num_players: NUM_PLAYERS,
treasures_to_get: TREASURES_TO_GET,
Expand All @@ -68,7 +71,7 @@ fn main() {
tile_push_phase: true,
has_ended: false,
})
// User plugins
// Custom plugins
.add_plugins((
BoardSelectorPlugin,
Camera2dPlugin,
Expand Down

0 comments on commit 60752e6

Please sign in to comment.