21 lines
338 B
C#
21 lines
338 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Thousandto.Launcher.Form
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 加载样式
|
|||
|
/// </summary>
|
|||
|
public enum LoadStyleCode
|
|||
|
{
|
|||
|
//假的
|
|||
|
Fake = 0,
|
|||
|
//真的
|
|||
|
Real = 1,
|
|||
|
//下载
|
|||
|
Download = 2,
|
|||
|
}
|
|||
|
}
|