This commit is contained in:
Glenn Maynard
2005-10-10 06:06:42 +00:00
parent d5b5ca9287
commit 766b7d8045
2 changed files with 2 additions and 4 deletions
+1 -3
View File
@@ -19,7 +19,7 @@ ReceptorArrow::ReceptorArrow()
StopAnimating();
}
bool ReceptorArrow::Load( const PlayerState* pPlayerState, int iColNo )
void ReceptorArrow::Load( const PlayerState* pPlayerState, int iColNo )
{
m_pPlayerState = pPlayerState;
m_iColNo = iColNo;
@@ -45,8 +45,6 @@ bool ReceptorArrow::Load( const PlayerState* pPlayerState, int iColNo )
this->AddChild( m_pPressBlock );
this->AddChild( m_pReceptorWaiting );
this->AddChild( m_pReceptorGo );
return true;
}
void ReceptorArrow::Update( float fDeltaTime )
+1 -1
View File
@@ -14,7 +14,7 @@ class ReceptorArrow : public ActorFrame
{
public:
ReceptorArrow();
bool Load( const PlayerState* pPlayerState, int iColNo );
void Load( const PlayerState* pPlayerState, int iColNo );
virtual void DrawPrimitives();
virtual void Update( float fDeltaTime );