remove Screen.h dep on ScreenManager.h. (this looked more useful before pulling in the higher-level includes, but still seems like the right thing to do)

This commit is contained in:
Glenn Maynard
2005-07-20 09:49:46 +00:00
parent 6ac51af9c2
commit ea3e2ba6f9
3 changed files with 6 additions and 7 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ static Preference<bool> g_bConcurrentLoading( "ConcurrentLoading", false );
// Screen registration
static map<CString,CreateScreenFn> *g_pmapRegistrees = NULL;
void ScreenManager::Register( const CString& sClassName, CreateScreenFn pfn )
void RegisterScreenClass( const CString& sClassName, CreateScreenFn pfn )
{
if( g_pmapRegistrees == NULL )
g_pmapRegistrees = new map<CString,CreateScreenFn>;