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