Initial commit

This commit is contained in:
2025-11-17 10:28:09 +01:00
parent 7bff81691f
commit 6ee36e26be
391 changed files with 110253 additions and 0 deletions

View File

@@ -0,0 +1,69 @@
#ifndef _application
#define _application
// Macros
#define LINUX
#include "stdlib.h"
extern char * __ClassNames[];
// Includes
#include <sched.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/sysinfo.h>
#include <pthread.h>
#include <time.h>
#include "opengl.h"
#include "street.h"
#include "console.h"
#include "toolset.h"
#include "extends.h"
#include "int.h"
#include "char.h"
#include "sqlite.h"
#include "fileSystem.h"
#include "array.h"
#include "triangle.h"
#include "vector3.h"
#include "vector2.h"
#include "text.h"
#include <user.h>
int main( );
void startOpenGL( );
char * someArray[10] ;
#endif