Started on the engine proper

This commit is contained in:
2022-09-18 21:48:15 +01:00
parent 902b917d2b
commit 50aef00ec0
11 changed files with 241 additions and 79 deletions

13
core/common.h Normal file
View File

@@ -0,0 +1,13 @@
#pragma once
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
//platform exports/imports
#if defined(__linux__)
#define CORE_API extern
#else
#define CORE_API
#endif