Changed project name (placeholder), some renames

This commit is contained in:
Piotrek
2021-05-10 10:43:14 +02:00
parent 3a45d4e0de
commit 3bd9fa942e
13 changed files with 43 additions and 37 deletions
+13
View File
@@ -0,0 +1,13 @@
use super::camera_controller::CameraController;
pub struct Player {
pub camera_controller: CameraController
}
impl Player {
pub fn new() -> Self {
Self {
camera_controller: CameraController::new()
}
}
}