mirror of
https://github.com/orange-cpp/omath.git
synced 2026-02-13 23:13:26 +00:00
added error codes
This commit is contained in:
16
include/omath/projection/ErrorCodes.h
Normal file
16
include/omath/projection/ErrorCodes.h
Normal 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,
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user