2020-02-05 22:28:05 +03:00
|
|
|
/*
|
2021-02-07 18:35:18 +03:00
|
|
|
* Copyright 2011-2021 Branimir Karadzic. All rights reserved.
|
2020-02-05 22:28:05 +03:00
|
|
|
* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
*
|
|
|
|
* AUTO GENERATED! DO NOT EDIT!
|
|
|
|
*
|
|
|
|
* Include this file in your build if you want to use the default DllImport
|
|
|
|
* names of bgfx.dll and bgfx_debug.dll. Otherwise, define your own
|
|
|
|
* partial class like the below with a const DllName for your use.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Bgfx
|
|
|
|
{
|
|
|
|
public static partial class bgfx
|
|
|
|
{
|
|
|
|
#if DEBUG
|
|
|
|
const string DllName = "bgfx_debug.dll";
|
|
|
|
#else
|
|
|
|
const string DllName = "bgfx.dll";
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|