11 строки
240 B
C#
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;
|
|||
|
}
|
|||
|
}
|