exactly as advertised

This commit is contained in:
Glenn Maynard
2002-11-17 08:21:32 +00:00
parent 2f91ba10f1
commit 50b70ed368
2 changed files with 125 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
#ifndef SAMPLE_3D_OBJECT
#define SAMPLE_3D_OBJECT
#include "ActorFrame.h"
class Sample3dObject: public ActorFrame
{
float rot;
public:
Sample3dObject();
virtual void Update( float fDeltaTime );
virtual void DrawPrimitives();
};
#endif
/*
* Copyright (c) 2002 by the person(s) listed below. All rights reserved.
*
* Glenn Maynard
*/