From d96b0cd2f76126f295f2ec7d4aea7ac419ea3314 Mon Sep 17 00:00:00 2001 From: Orange Date: Mon, 11 Aug 2025 01:18:39 +0300 Subject: [PATCH] Marks Camera class as final Prevents inheritance from the Camera class. --- include/omath/projection/camera.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/omath/projection/camera.hpp b/include/omath/projection/camera.hpp index b56879e..816d47f 100644 --- a/include/omath/projection/camera.hpp +++ b/include/omath/projection/camera.hpp @@ -27,7 +27,7 @@ namespace omath::projection using FieldOfView = Angle; template - class Camera + class Camera final { public: virtual ~Camera() = default;