Brak opisu
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.

123456789101112131415161718192021
  1. using System;
  2. using UnityEngine;
  3. namespace UnityEditor.TestTools.TestRunner.TestRun
  4. {
  5. [Serializable]
  6. internal class TaskInfo
  7. {
  8. [SerializeField]
  9. public int index;
  10. [SerializeField]
  11. public int stopBeforeIndex;
  12. [SerializeField]
  13. public int pc;
  14. [SerializeField]
  15. public TaskMode taskMode = TaskMode.Normal;
  16. }
  17. }