Files
Lachlan Leone c3a5153a56 Initial Commit
2026-04-05 18:57:16 +10:00

10 lines
245 B
C#

using KitchenData;
using KitchenLib.Customs;
namespace Easter2025.Customs.Generics
{
public abstract class GenericStackableItem : CustomItem
{
public override ItemStorage ItemStorageFlags => ItemStorage.StackableFood;
}
}