mirror of
https://github.com/orange-cpp/omath.git
synced 2026-02-13 15:03:27 +00:00
14 lines
198 B
C++
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,
|
|
};
|
|
} |