You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
225 B

  1. namespace RenderHookAPI.Interface
  2. {
  3. public enum Direct3DVersion
  4. {
  5. Unknown,
  6. AutoDetect,
  7. Direct3D9,
  8. Direct3D10,
  9. Direct3D10_1,
  10. Direct3D11,
  11. Direct3D11_1,
  12. }
  13. }