Files

21 lines
338 B
C#
Raw Permalink Normal View History

2025-01-25 04:38:09 +08:00
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,
}
}