Comencem a ficar el codi nou, ara va en la carpeta "source"

This commit is contained in:
2023-10-11 18:58:54 +02:00
parent 20cf3656f6
commit 20df5d3935
12 changed files with 1995 additions and 0 deletions

16
source/main.cpp Normal file
View File

@@ -0,0 +1,16 @@
#include "jgame.h"
#include "jdraw.h"
#include "jinput.h"
#include "jaudio.h"
void game::init()
{
draw::init("Arounders", 320, 200, 3);
input::init(3);
audio::init();
game::setUpdateTicks(16);
game::setConfig("fase", -1);
game::setState(nullptr);
}