bgfx_dllname.cs 567 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Copyright 2011-2026 Branimir Karadzic. All rights reserved.
  3. * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
  4. */
  5. /*
  6. *
  7. * AUTO GENERATED! DO NOT EDIT!
  8. *
  9. * Include this file in your build if you want to use the default DllImport
  10. * names of bgfx.dll and bgfx_debug.dll. Otherwise, define your own
  11. * partial class like the below with a const DllName for your use.
  12. *
  13. */
  14. namespace Bgfx
  15. {
  16. public static partial class bgfx
  17. {
  18. #if DEBUG
  19. const string DllName = "bgfx_debug.dll";
  20. #else
  21. const string DllName = "bgfx.dll";
  22. #endif
  23. }
  24. }