bgfx/bindings/cs/bgfx_dllname.cs
Бранимир Караџић 239ce7a612 Fixed typo.
2021-02-07 07:35:18 -08:00

27 lines
567 B
C#

/*
* Copyright 2011-2021 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
}
}