Ei kuvausta
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.

FeatureFlags.cs 309B

12345678910111213
  1. using System;
  2. namespace UnityEngine.TestRunner.NUnitExtensions.Runner
  3. {
  4. [Serializable]
  5. internal class FeatureFlags
  6. {
  7. public bool fileCleanUpCheck;
  8. public bool requiresSplashScreen;
  9. public bool strictDomainReload;
  10. public bool disableNestedEnumeratorBugfix;
  11. }
  12. }