示例#1
0
        public static ForegroundType GetForegroundType(Foreground.Id id)
        {
            var package = ItemServices.GetPackageInternal((int)id);

            return(package?.ForegroundType ?? ForegroundType.Normal);
        }
示例#2
0
 public bool HasBlock(int id)
 {
     return(this.HasPack(ItemServices.GetPackageInternal(id)));
 }
示例#3
0
 public bool HasAuraShape(AuraShape auraShape)
 {
     return(this.HasPack(ItemServices.GetPackage(auraShape)));
 }
示例#4
0
 public bool HasAuraColor(AuraColor auraColor)
 {
     return(this.HasPack(ItemServices.GetPackage(auraColor)));
 }
示例#5
0
 public bool HasSmiley(Smiley smiley)
 {
     return(this.HasPack(ItemServices.GetPackage(smiley)));
 }
示例#6
0
 internal bool HasBlockInternal(Background.Id id)
 {
     return(this.HasPack(ItemServices.GetPackage(id)));
 }