Files
Gryphn/src/utils/gryphn_bool.h
2025-05-17 13:21:37 -04:00

9 lines
115 B
C

#pragma once
#include "stdlib.h"
typedef int gnBool;
#define gnFalse 0;
#define gnTrue 1;
typedef size_t gnSize;