UnityTrampolineConfigure.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. #pragma once
  2. // Auto Generated File, do not edit!
  3. // It will be updated whenever we update unity version
  4. // When unity version is changed:
  5. // UNITY_VERSION value will be changed
  6. // UNITY_X_Y_Z for this new version will be added
  7. //
  8. // If you want conditional on unity version you have several options:
  9. // 1. apple like:
  10. // #if !defined(UNITY_4_5_0)
  11. // is equivalent to saying unity trampoline version is pre-4.5.0 (as 4.5.0 will define the macro)
  12. // 2. explicit version specified:
  13. // #if UNITY_VERSION < 450
  14. // is equivalent to saying unity trampoline version is pre-4.5.0
  15. // 3. most robust would be to check both presence and comparison with unity version
  16. // it is not needed now but who knows what we come up with ;-)
  17. // #if !defined(UNITY_4_5_0) || UNITY_VERSION < UNITY_4_5_0
  18. // is equivalent to saying unity trampoline version is pre-4.5.0
  19. #define UNITY_VERSION 201937
  20. // known unity versions
  21. #define UNITY_4_2_0 420
  22. #define UNITY_4_2_1 421
  23. #define UNITY_4_2_2 422
  24. #define UNITY_4_3_0 430
  25. #define UNITY_4_3_1 431
  26. #define UNITY_4_3_2 432
  27. #define UNITY_4_3_3 433
  28. #define UNITY_4_3_4 434
  29. #define UNITY_4_5_0 450
  30. #define UNITY_4_5_1 451
  31. #define UNITY_4_5_2 452
  32. #define UNITY_4_5_3 453
  33. #define UNITY_4_6_0 460
  34. #define UNITY_5_0_0 500
  35. #define UNITY_5_1_0 510
  36. #define UNITY_5_2_0 520
  37. #define UNITY_5_3_0 530
  38. #define UNITY_5_4_0 540
  39. #define UNITY_5_5_0 550
  40. #define UNITY_5_6_0 560
  41. #define UNITY_2017_1_0 201710
  42. #define UNITY_2017_2_0 201720
  43. #define UNITY_2017_3_0 201730
  44. #define UNITY_2018_1_0 201810
  45. #define UNITY_2018_2_0 201820
  46. #define UNITY_2018_3_0 201830
  47. #define UNITY_2019_1_0 201910
  48. #define UNITY_2019_2_0 201920
  49. #define UNITY_2019_3_0 201930
  50. #define UNITY_2019_3_7 201937