Namespace: Tzu_Engine.Physic
Assembly: Tzu_Engine (in Tzu_Engine.dll)

Syntax

Visual Basic (Declaration)
<UnmanagedFunctionPointerAttribute(CallingConvention.Cdecl)>
Public Delegate Function TZPhysics.HingeJointCB( _ 
   ByVal joint As Integer,  _ 
   ByVal desc As TZPhysics.NewtonHingeSliderUpdateDesc _ 
) As Integer
C#
[UnmanagedFunctionPointerAttribute(CallingConvention.Cdecl)]
public delegate int TZPhysics.HingeJointCB(
   int joint,
   TZPhysics.NewtonHingeSliderUpdateDesc desc
)
C++
[UnmanagedFunctionPointerAttribute(CallingConvention::Cdecl)]
public delegate int TZPhysics.HingeJointCB(
   int joint,
   TZPhysics.NewtonHingeSliderUpdateDesc desc
)
J#
/** delegate */
/** @attribute UnmanagedFunctionPointerAttribute(CallingConvention.Cdecl) */
public delegate int TZPhysics.HingeJointCB(
   int joint,
   TZPhysics.NewtonHingeSliderUpdateDesc desc
)
JScript
JScript suports the use of delegates, but not the declaration of new ones.

See Also