game/src/player.rs

7 lines
105 B
Rust
Raw Normal View History

2023-05-20 17:33:25 +00:00
use cgmath::{Point3, Deg};
pub struct Player {
pub position: Point3<f32>,
pub buffer: wgpu::Buffer,
}