make RegisterTypes public

This commit is contained in:
Glenn Maynard
2006-09-20 23:31:54 +00:00
parent 41028ca167
commit 494523f741
+3 -3
View File
@@ -32,6 +32,9 @@ public:
/* Reset the environment, freeing any globals left over by previously executed scripts. */
void ResetState();
/* Register all subscribing types. There's no harm in registering when already registered. */
void RegisterTypes();
void SetGlobal( const RString &sName, int val );
void SetGlobal( const RString &sName, float val );
void SetGlobal( const RString &sName, bool val );
@@ -43,9 +46,6 @@ private:
lua_State *L;
RageMutex *m_pLock;
/* Register all subscribing types. There's no harm in registering when already registered. */
void RegisterTypes();
};