BuildEnvironment.cs 282 B

12345678910111213141516171819
  1. using System;
  2. namespace OpenVIII
  3. {
  4. public static class BuildEnvironment
  5. {
  6. public static Boolean IsWindows
  7. {
  8. get
  9. {
  10. #if _WINDOWS
  11. return true;
  12. #else
  13. return false;
  14. #endif
  15. }
  16. }
  17. }
  18. }