added error codes

This commit is contained in:
2024-09-03 21:41:22 +03:00
parent 2947bbd95a
commit abfa3e8123
3 changed files with 22 additions and 5 deletions

View File

@@ -0,0 +1,16 @@
//
// Created by Vlad on 03.09.2024.
//
#pragma once
#include <cstdint>
namespace omath::projection
{
enum class Error : uint16_t
{
WORLD_POSITION_IS_BEHIND_CAMERA = 0,
WORLD_POSITION_IS_OUT_OF_SCREEN_BOUNDS,
};
}