cloudflight
2024-05-07 d750fc90db76b0c6aab2f99b987b7af84b831ce4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Hydro.CommonBase
{
    public class GlobalProgress
    {
        public static GlobalProgress Instance = new GlobalProgress();
        public static string stateText { get; set; }
        public static int MaxNum { get; set; }
        public static int CurrentNum { get; set; }
        public static int ChildMaxNum { get; set; }
        public static int ChildCurrentNum { get; set; }
        public static string ChildText { get; set; }
        public static bool Hide { get; set; } = false;
 
        public static bool NeedStop { get; set; } = false;
 
        public static int mode { get; set; } = 0;
 
    }
}