Add engine core module

The core module will connect all other modules. Currently, it can only
display a message saying "The build-system is working!".
This commit is contained in:
Eric-Paul Ickhorn 2024-09-09 14:54:06 +02:00
parent 6644a59270
commit 79415a2929
5 changed files with 34 additions and 3 deletions

6
.gitignore vendored
View File

@ -1,4 +1,4 @@
.private/
.build/
voxula
/.private/
/.build/
/voxula

View File

@ -0,0 +1,18 @@
#ifndef VOXULA_CORE_H
#define VOXULA_CORE_H
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <voxula/internals/utility.h>
typedef struct vx_core vx_core_s;
struct vx_core
{
vx_uuid_table_s *uuid_table;
};
#endif // VOXULA_CORE_H

View File

@ -0,0 +1,6 @@
{module}/inc-c
{module-folder}/assets/inc-c
{module-folder}/ecs/inc-c
{module-folder}/renderer/inc-c
{module-folder}/utility/inc-c
{module-folder}/window/inc-c

View File

@ -0,0 +1,7 @@
#include <voxula/internals/core.h>
int main(int argc, char **argv)
{
puts("The build-system is working!");
return -1;
}

0
scripts/build.bash Normal file → Executable file
View File