Engine²
Open-source game engine written in C++.
Loading...
Searching...
No Matches
UnsupportedTextureFormatError.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <stdexcept>
4
5namespace Graphic::Exception {
6
7class UnsupportedTextureFormatError : public std::runtime_error {
8 using std::runtime_error::runtime_error;
9};
10
11} // namespace Graphic::Exception
Definition UnsupportedTextureFormatError.hpp:7
Definition AdapterCreationError.hpp:5