Projectile code and updates to some actors that can use it (celt_ijv and hele_iar)

This was SVN commit r2266.
This commit is contained in:
MarkT
2005-05-10 07:13:25 +00:00
parent 28b92f3c43
commit 86dc351205
71 changed files with 1057 additions and 154 deletions
+7
View File
@@ -31,6 +31,7 @@ void CScriptObject::Uproot()
CScriptObject::CScriptObject( JSFunction* _Function )
{
Function = NULL;
SetFunction( _Function );
}
@@ -40,6 +41,12 @@ CScriptObject::CScriptObject( jsval v )
SetJSVal( v );
}
CScriptObject::CScriptObject( const CScriptObject& copy )
{
Function = NULL;
SetFunction( copy.Function );
}
void CScriptObject::SetFunction( JSFunction* _Function )
{
Uproot();