Update ScriptSystem.h

Fix capitalization and add newline
This commit is contained in:
Derek "Turtle" Roe 2021-03-17 22:39:02 -05:00
parent e64c00b49e
commit f802892277
1 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ private:
CriticalSection m_CS; CriticalSection m_CS;
void RegisterHook(const char* hookId, CScriptHook* cbList); // associate string id with callback list void RegisterHook(const char* hookId, CScriptHook* cbList); // Associate string ID with callback list
void UnregisterHooks(); void UnregisterHooks();
HDC m_ScreenDC; HDC m_ScreenDC;
@ -133,4 +133,4 @@ public:
{ {
return m_HookFrameDrawn; return m_HookFrameDrawn;
} }
}; };