Files
omath/include/omath/projection/error_codes.hpp
2025-05-03 20:31:59 +03:00

14 lines
198 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,
};
}