| 10 | namespace ZEngine::Rendering::Textures { |
| 11 | |
| 12 | Texture* CreateTexture(const char* path) { |
| 13 | return new Texture2D(path); |
| 14 | } |
| 15 | |
| 16 | Texture* CreateTexture(unsigned int width, unsigned int height) { |
| 17 | return new Texture2D(width, height); |
no outgoing calls
no test coverage detected