25 lines
633 B
C
25 lines
633 B
C
#pragma once
|
|
|
|
#include "stdint.h"
|
|
#include "stdlib.h"
|
|
|
|
#include "utils/gryphn_bool.h"
|
|
#include "utils/gryphn_error_code.h"
|
|
#include "utils/gryphn_version.h"
|
|
#include "utils/math/gryphn_vec2.h"
|
|
#include "utils/math/gryphn_vec3.h"
|
|
#include "utils/math/gryphn_vec4.h"
|
|
#include "utils/math/gryphn_mat4.h"
|
|
#include "utils/math/gryphn_math.h"
|
|
#include "utils/gryphn_color.h"
|
|
#include "utils/gryphn_color_format.h"
|
|
#include "utils/gryphn_image_format.h"
|
|
#include "utils/lists/gryphn_array_list.h"
|
|
|
|
typedef uint32_t gnUInt;
|
|
typedef char gnByte;
|
|
typedef unsigned char gnUByte;
|
|
typedef int gnInt;
|
|
typedef float gnFloat;
|
|
typedef size_t gnSize;
|