Files
omath/include/omath/projection/error_codes.hpp
Vladislav Alpatov b9ac44a901 renamed headers
2025-03-21 04:17:42 +03:00

15 lines
199 B
C++

//
// Created by Vlad on 03.09.2024.
//
#pragma once
#include <cstdint>
namespace omath::projection
{
enum class Error : uint16_t
{
WORLD_POSITION_IS_OUT_OF_SCREEN_BOUNDS,
};
}