New Sandbox Stuff

This commit is contained in:
Chris Gilbert
2002-11-19 22:55:51 +00:00
parent 7f59c0ae27
commit 93e5f253a0
7 changed files with 129 additions and 26 deletions
+6 -2
View File
@@ -6,11 +6,15 @@
class Sample3dObject: public ActorFrame
{
float rot;
float fDeltaTime;
float tX;
float tY;
float tZ;
public:
Sample3dObject();
void Update();
void DrawPrimitives();
virtual void Update( float fDeltaTime );
virtual void DrawPrimitives();
};
#endif