Files
micro-jrpg/src/microrpg.h
2025-10-26 15:42:34 -05:00

15 lines
276 B
C
Executable File

/**
* Copyright (c) 2025 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#pragma once
#include <stdint.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <stdbool.h>
typedef bool bool_t;