added everything

This commit is contained in:
Metario
2017-04-17 06:17:10 -06:00
commit 9c6ff74f19
6121 changed files with 1625704 additions and 0 deletions

50
engine/game/scopeAlwaysShape.cc Executable file
View File

@@ -0,0 +1,50 @@
//-----------------------------------------------------------------------------
// Torque Game Engine
// Copyright (C) GarageGames.com, Inc.
//-----------------------------------------------------------------------------
#include "game/staticShape.h"
#include "game/gameConnection.h"
struct ScopeAlwaysShapeData: public StaticShapeData {
typedef StaticShapeData Parent;
public:
//ScopeAlwaysShapeData();
//
DECLARE_CONOBJECT(ScopeAlwaysShapeData);
//static void initPersistFields();
//virtual void packData(BitStream* stream);
//virtual void unpackData(BitStream* stream);
};
IMPLEMENT_CO_DATABLOCK_V1(ScopeAlwaysShapeData);
class ScopeAlwaysShape : public StaticShape
{
typedef StaticShape Parent;
ScopeAlwaysShapeData* mDataBlock;
public:
ScopeAlwaysShape();
static void initPersistFields();
DECLARE_CONOBJECT(ScopeAlwaysShape);
};
ScopeAlwaysShape::ScopeAlwaysShape()
{
mNetFlags.set(Ghostable|ScopeAlways);
mTypeMask |= ShadowCasterObjectType;
}
void ScopeAlwaysShape::initPersistFields()
{
Parent::initPersistFields();
}
IMPLEMENT_CO_NETOBJECT_V1(ScopeAlwaysShape);