| 12 | namespace ZEngine::Controllers { |
| 13 | |
| 14 | void PerspectiveCameraController::Initialize() { |
| 15 | m_perspective_camera->SetTarget(m_camera_target); |
| 16 | m_perspective_camera->SetPosition(m_position); |
| 17 | } |
| 18 | |
| 19 | void PerspectiveCameraController::Update(Core::TimeStep dt) {} |
| 20 |
nothing calls this directly
no test coverage detected