implement engine structure

This commit is contained in:
n0ffie 2025-02-10 01:04:33 +01:00
parent fdebdd3ca2
commit 2dbfa1b99e
6 changed files with 470 additions and 103 deletions

11
src/main.c Normal file
View file

@ -0,0 +1,11 @@
#include <colysis.h>
#include <alyson.h>
#include <stdio.h>
int main(int argc, char** argv)
{
ALArgs args = al_args_create(argc, argv);
}

View file

@ -1,21 +0,0 @@
#include <colysis.h>
#include <iostream>
#include <alyson.h>
size_t init(size_t task) {
if(task == 0)
return 2;
return 0;
}
void update(float dt) {
}
void render(float dt) {
}