12 lines
367 B
C#
12 lines
367 B
C#
|
|
using KitchenData;
|
||
|
|
using KitchenLib.Customs;
|
||
|
|
|
||
|
|
namespace Easter2025.Customs.Generics
|
||
|
|
{
|
||
|
|
public abstract class GenericDecorationAppliance : CustomAppliance
|
||
|
|
{
|
||
|
|
public override bool IsPurchasable => false;
|
||
|
|
public override ShoppingTags ShoppingTags => ShoppingTags.Decoration;
|
||
|
|
public override PriceTier PriceTier => PriceTier.Free;
|
||
|
|
}
|
||
|
|
}
|