add player to game

This commit is contained in:
TudbuT 2024-11-22 22:26:20 +01:00
parent c6f6415d8d
commit b72cfae04b
No known key found for this signature in database
GPG key ID: B3CF345217F202D3
4 changed files with 14 additions and 3 deletions

View file

@ -3,7 +3,8 @@ use bevy_rapier2d::prelude::*;
use player::player_plugin;
mod player;
mod set;
fn game_plugin(app: &mut App) {
app.add_plugins((player_plugin));
app.add_plugins(player_plugin);
}