Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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. }