mirror of
https://github.com/Dongyifengs/AssetStudio-Genshin-MoYi.git
synced 2025-04-22 04:29:18 +08:00
21 lines
377 B
C#
21 lines
377 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace AssetStudio
|
|||
|
{
|
|||
|
public class BuildType
|
|||
|
{
|
|||
|
private string buildType;
|
|||
|
|
|||
|
public BuildType(string type)
|
|||
|
{
|
|||
|
buildType = type;
|
|||
|
}
|
|||
|
|
|||
|
public bool IsAlpha => buildType == "a";
|
|||
|
public bool IsPatch => buildType == "p";
|
|||
|
}
|
|||
|
}
|