Files
itgmania212121/stepmania/src/ActorFrame.h
T

35 lines
647 B
C++

#pragma once
/*
-----------------------------------------------------------------------------
Class: ActorFrame
Desc: A container for other actors.
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------------
*/
#include "RageUtil.h"
#include <d3dx8math.h>
#include "Actor.h"
class ActorFrame : public Actor
{
protected:
CArray<Actor*,Actor*> m_SubActors;
public:
void AddSubActor( Actor* pActor);
virtual void Update( float fDeltaTime );
virtual void DrawPrimitives();
virtual void SetDiffuseColor( D3DXCOLOR c );
};