Files
TheGreatEggscape-Public/Customs/Generics/GenericStackableItemGroup.cs
T

10 lines
255 B
C#
Raw Normal View History

2026-04-05 18:57:16 +10:00
using KitchenData;
using KitchenLib.Customs;
namespace Easter2025.Customs.Generics
{
public abstract class GenericStackableItemGroup : CustomItemGroup
{
public override ItemStorage ItemStorageFlags => ItemStorage.StackableFood;
}
}