Initial commit

This commit is contained in:
Skylord123
2024-03-20 18:08:17 -06:00
commit 4f5d1133b8
6165 changed files with 1203604 additions and 0 deletions
@@ -0,0 +1,20 @@
//-----------------------------------------------------------------------------
// Torque Game Engine
// Copyright (C) GarageGames.com, Inc.
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// Hook into the mission editor.
function StaticShapeData::create(%data)
{
// The mission editor invokes this method when it wants to create
// an object of the given datablock type.
%obj = new StaticShape() {
dataBlock = %data;
};
return %obj;
}