add graphic for ScreenPlayerOptions CancelAll

This commit is contained in:
Chris Danford
2004-03-13 18:15:50 +00:00
parent 5bb3804be8
commit bb8ae37aab
5 changed files with 35 additions and 9 deletions
+11
View File
@@ -238,3 +238,14 @@ void UtilCommand( Actor& actor, CString sClassName, CString sCommandName )
actor.Command( THEME->GetMetric(sClassName,actor.GetID()+sCommandName+"Command") );
}
void AutoActor::Load( CString sPath )
{
Unload();
m_pActor = MakeActor( sPath );
}
void AutoActor::LoadAndSetName( CString sScreenName, CString sActorName )
{
Load( THEME->GetPathG(sScreenName,sActorName) );
m_pActor->SetName( sActorName );
}