| 12 | class Camera2D : public ::Camera2D { |
| 13 | public: |
| 14 | Camera2D(const ::Camera2D& camera) |
| 15 | : ::Camera2D(camera) { |
| 16 | // Nothing. |
| 17 | } |
| 18 | |
| 19 | Camera2D(::Vector2 offset = {}, ::Vector2 target = {}, float rotation = 0.0f, float zoom = 1.0f) |
| 20 | : ::Camera2D{offset, target, rotation, zoom} {} |
nothing calls this directly
no outgoing calls
no test coverage detected