BulletSharpPInvoke/BulletSharp/Native.cs

11 строки
240 B
C#

using System.Runtime.InteropServices;
namespace BulletSharp
{
public static class Native
{
public const string Dll = "libbulletc";
public const CallingConvention Conv = CallingConvention.Cdecl;
}
}