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