Ejemplo n.º 1
0
        public static ForegroundType GetForegroundType(Foreground.Id id)
        {
            var package = ItemServices.GetPackageInternal((int)id);

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