Files
Gryphn-Utils/gryphn_utils.h
2025-06-06 20:06:43 -04:00

22 lines
500 B
C

#pragma once
#include "stdint.h"
#include "stdlib.h"
#include "src/gryphn_bool.h"
#include "src/gryphn_error_code.h"
#include "src/gryphn_version.h"
#include "src/math/gryphn_vec2.h"
#include "src/math/gryphn_vec3.h"
#include "src/math/gryphn_vec4.h"
#include "src/gryphn_color.h"
#include "src/gryphn_color_format.h"
#include "src/gryphn_image_format.h"
typedef uint32_t gnUInt;
typedef char gnByte;
typedef unsigned char gnUByte;
typedef int gnInt;
typedef float gnFloat;
typedef size_t gnSize;