Files
omath/include/omath/projection/ErrorCodes.h
2024-10-18 17:20:23 +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,
};
}