13 lines
244 B
Rust
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()
|
|
}
|
|
}
|
|
} |