* The Model constructor with a Mesh() is removed. * * Use `raylib::MeshUnmanaged` or `::Mesh` instead, as raylib will take ownership of the data. * * @see raylib::MeshUnmanaged */
| 24 | * @see raylib::MeshUnmanaged |
| 25 | */ |
| 26 | Model(const raylib::Mesh& mesh) = delete; |
| 27 | |
| 28 | Model(const Model&) = delete; |
| 29 | Model& operator=(const Model&) = delete; |
nothing calls this directly
no outgoing calls
no test coverage detected