| 1234567891011121314151617181920212223242526272829 |
- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
- using System.Runtime.CompilerServices;
- namespace BansheeEngine
- {
- /** @cond INTEROP */
- /** @addtogroup Interop
- * @{
- */
- /// <summary>
- /// Wrapper around the native FixedJoint class.
- /// <see cref="FixedJoint"/>
- /// </summary>
- internal class NativeFixedJoint : NativeJoint
- {
- public NativeFixedJoint(ScriptCommonJointData commonData)
- {
- Internal_CreateInstance(this, ref commonData);
- }
- [MethodImpl(MethodImplOptions.InternalCall)]
- private static extern void Internal_CreateInstance(NativeFixedJoint instance, ref ScriptCommonJointData commonData);
- }
- /** @} */
- /** @endcond */
- }
|