Files
dusk/src/dusk/dusk.h
2026-03-06 14:01:21 -06:00

36 lines
613 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>
#include "duskplatform.h"
#if PSP
#include "duskpsp.h"
#elif DOLPHIN
#include "duskdolphin.h"
#endif
typedef bool bool_t;
typedef int int_t;
typedef float float_t;
typedef char char_t;