Initial commit

This commit is contained in:
Eagle517
2025-02-17 23:17:30 -06:00
commit 7cad314c94
4726 changed files with 1145203 additions and 0 deletions

27
engine/math/mathTypes.h Executable file
View File

@@ -0,0 +1,27 @@
//-----------------------------------------------------------------------------
// Torque Game Engine
// Copyright (C) GarageGames.com, Inc.
//-----------------------------------------------------------------------------
#ifndef _MATHTYPES_H_
#define _MATHTYPES_H_
#ifndef _DYNAMIC_CONSOLETYPES_H_
#include "console/dynamicTypes.h"
#endif
void RegisterMathFunctions(void);
// Define Math Console Types
DefineConsoleType( TypePoint2I )
DefineConsoleType( TypePoint2F )
DefineConsoleType( TypePoint3F )
DefineConsoleType( TypePoint4F )
DefineConsoleType( TypeRectI )
DefineConsoleType( TypeRectF )
DefineConsoleType( TypeMatrixPosition )
DefineConsoleType( TypeMatrixRotation )
DefineConsoleType( TypeBox3F )
#endif