7 lines
132 B
Rust
7 lines
132 B
Rust
|
|
use bevy::{ecs::component::Component, math::IVec2};
|
||
|
|
|
||
|
|
#[derive(Default, Debug, Component)]
|
||
|
|
pub struct Player {
|
||
|
|
pub pos: IVec2,
|
||
|
|
}
|