update utils

This commit is contained in:
Greg Wells
2025-06-06 19:58:20 -04:00
parent f3a7d6e5c2
commit 96253ec389
9 changed files with 120 additions and 231 deletions

22
gryphn_utils.h Normal file
View File

@@ -0,0 +1,22 @@
#pragma once
#include "stdint.h"
#include "stdlib.h"
#include "src/gryphn_bool.h"
#include "src/gryphn_error_code.h"
#include "src/version/gryphn_version.h"
#include "src/math/gryphn_vec2.h"
#include "src/math/gryphn_vec3.h"
#include "src/math/gryphn_vec4.h"
#include "src/types/gryphn_color.h"
#include "src/types/gryphn_color_format.h"
#include "src/types/gryphn_image_format.h"
#include "src/gryphn_access_level.h"
typedef uint32_t gnUInt;
typedef char gnByte;
typedef unsigned char gnUByte;
typedef int gnInt;
typedef float gnFloat;
typedef size_t gnSize;