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