no message

This commit is contained in:
Chris Gilbert
2002-11-19 23:02:02 +00:00
parent 93e5f253a0
commit bd4b8875fc
2 changed files with 3 additions and 8 deletions
+1 -3
View File
@@ -18,12 +18,10 @@
Sample3dObject::Sample3dObject()
{
rot = 0;
Sample3dObject::Update();
DrawPrimitives();
}
void Sample3dObject::Update()
void Sample3dObject::Update( float fDeltaTime )
{
rot += fDeltaTime * 360.f;
rot = float(fmod(rot, 360.f));