35 lines
642 B
C
35 lines
642 B
C
/**
|
|
* Copyright (c) 2025 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#pragma once
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <stdbool.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <math.h>
|
|
#include <errno.h>
|
|
#include <ctype.h>
|
|
#include <stdarg.h>
|
|
#include <float.h>
|
|
|
|
#include <cglm/cglm.h>
|
|
#include <cglm/types.h>
|
|
#include <cglm/vec2.h>
|
|
|
|
#if PSP
|
|
#include <pspkernel.h>
|
|
#include <pspdebug.h>
|
|
#include <pspdisplay.h>
|
|
#include <pspctrl.h>
|
|
#include <psphprm.h>
|
|
#endif
|
|
|
|
typedef bool bool_t;
|
|
typedef int int_t;
|
|
typedef float float_t;
|
|
typedef char char_t; |