add AR code file parser and shit

This commit is contained in:
Arisotura
2020-08-13 00:20:34 +02:00
parent 28b8f614ee
commit 4cefff2528
7 changed files with 248 additions and 154 deletions

View File

@ -19,6 +19,8 @@
#ifndef ARENGINE_H
#define ARENGINE_H
#include "ARCodeFile.h"
namespace AREngine
{
@ -26,6 +28,8 @@ bool Init();
void DeInit();
void Reset();
void SetCodeFile(ARCodeFile* file);
void RunCheats();
}