Files
TheGreatEggscape-Public/Customs/Generics/GenericDecorationAppliance.cs
T
Lachlan Leone c3a5153a56 Initial Commit
2026-04-05 18:57:16 +10:00

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;
}
}