6 lines
72 B
Rust
6 lines
72 B
Rust
|
use cgmath::Point2;
|
||
|
|
||
|
pub struct PlayerStatus {
|
||
|
pub pos: Point2<f32>,
|
||
|
}
|