qinjie
2023-11-23 1c0be3112f45f4cb10f2fb41398407a3b4de5bc1
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;
 
    }
}