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,45 @@
#ifndef _vector3
#define _vector3
// Macros
#include "stdlib.h"
extern char * __ClassNames[];
// Includes
#include "application.h"
typedef struct vector3{
unsigned short __classIndex;
float x;
float y;
float z;
} vector3;
void vector3_constructor( vector3 * this, float x, float y, float z );
vector3 * vector3_operator_plus( vector3 * this, vector3 * b );
vector3 * vector3_operator_add( vector3 * this, vector3 * b );
void vector3_add( vector3 * this, vector3 * b );
vector3 vector3_new( float x, float y, float z );
vector3 * vector3_newPointer( float x, float y, float z );
#endif