mame/3rdparty/bgfx/bindings/cs/bgfx_dllname.cs
Miodrag Milanović 812e6094f4
Update BGFX, BX and BIMG (#10789)
* Update to bgfx a93a714632b79b5ddbf5c86ac323fa9b76ed3433
Co-authored-by: Бранимир Караџић <branimirkaradzic@gmail.com>
2023-01-05 09:32:40 -05:00

27 lines
567 B
C#

/*
* Copyright 2011-2022 Branimir Karadzic. All rights reserved.
* 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
}
}