diff --git a/modules/core/inc/tactile/core/render/graphics_api.hpp b/modules/core/inc/tactile/core/render/graphics_api.hpp new file mode 100644 index 0000000000..e65716bf46 --- /dev/null +++ b/modules/core/inc/tactile/core/render/graphics_api.hpp @@ -0,0 +1,18 @@ +// Copyright (C) 2023 Albin Johansson (GNU General Public License v3.0) + +#pragma once + +#include "tactile/core/prelude.hpp" + +namespace tactile { + +/** + * \brief Represents the possible graphics APIs. + */ +enum class GraphicsAPI : int8 { + kUnknown, + kOpenGL, + kVulkan +}; + +} // namespace tactile