Files
parsnip_plucker/src/player.rs

7 lines
132 B
Rust
Raw Normal View History

2026-02-03 21:34:51 -05:00
use bevy::{ecs::component::Component, math::IVec2};
#[derive(Default, Debug, Component)]
pub struct Player {
pub pos: IVec2,
}