Re-create PoolBox Paco

This commit is contained in:
2024-01-03 12:51:13 -06:00
parent b4458d4280
commit d692d57bcf
8 changed files with 110 additions and 20 deletions

View File

@@ -0,0 +1,32 @@
#include "../include/asset_mgr.hpp"
#include "include/paco.hpp"
#include <stdio.h>
using namespace JabyEngine;
// Do we want this namespace?
// Do we want Paco to be HERE?!
static object::Paco paco;
static void setup() {
Assets::Main::load();
paco.setup();
}
static void update() {
paco.update();
}
static void render() {
paco.render();
}
void main() {
setup();
while(true) {
update();
GPU::swap_buffers_vsync(1);
render();
}
}