Files
first-voxels/src/app/player.rs
T
2021-05-08 18:42:32 +02:00

13 lines
244 B
Rust

use super::camera_controller::CameraController;
pub struct Player {
pub camera_controller: CameraController
}
impl Player {
pub fn new() -> Self {
Self {
camera_controller: CameraController::new()
}
}
}