dusk/src/dusk.h
2025-04-07 17:57:06 -05:00

27 lines
509 B
C

/**
* Copyright (c) 2024 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#pragma once
#include <stdint.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdlib.h>
#include <math.h>
#include <string.h>
#include <stdio.h>
#include <stdarg.h>
#include <ctype.h>
#include <pthread.h>
#include <raylib.h>
#include <errno.h>
#include <unistd.h>
typedef bool bool_t;
typedef char char_t;
#define DUSK_NAME "Dusk"
#define DUSK_VERSION "1.0.0"