Difference between revisions of "WR DestroyObject"

From Dragon Age Toolset Wiki
Jump to: navigation, search
(Created page with '{{dafunction |name = WR_DestroyObject |brief = |param1type = object |param1name = oObject |param1desc = Object to destroy |param1default = |returntype = void |returndesc = |so...')
 
(possible caveat.)
Line 16: Line 16:
 
<!-- This section contains the full description from the functions comments. Do not change unless you are confident these are incomplete or incorrect. -->
 
<!-- This section contains the full description from the functions comments. Do not change unless you are confident these are incomplete or incorrect. -->
  
<!-- == Remarks == -->
+
== Remarks ==
 
<!-- This section contains additional comments, observations and known issues. -->
 
<!-- This section contains additional comments, observations and known issues. -->
 +
 +
This function simply calls [[DestroyObject]], which can be unsafe in some circumstances. See [[Safe Destroy Object]].
  
 
<!-- == Examples == -->
 
<!-- == Examples == -->

Revision as of 22:56, 9 February 2010


void WR_DestroyObject(
object oObject
);
Parameters:
oObject
Object to destroy
Returns:

Nothing.

Source:

Core Resources.wrappers_h


Remarks

This function simply calls DestroyObject, which can be unsafe in some circumstances. See Safe Destroy Object.