haw-gj13-game/src/main.rs
2024-11-22 20:56:29 +01:00

13 lines
258 B
Rust

use bevy::prelude::*;
use bevy_rapier2d::prelude::*;
mod player {}
const METER: f32 = 120.;
fn main() {
App::new()
.add_plugins(DefaultPlugins)
.add_plugins(RapierPhysicsPlugin::<NoUserData>::pixels_per_meter(METER))
.run();
}