10 lines
255 B
C#
10 lines
255 B
C#
using KitchenData;
|
|
using KitchenLib.Customs;
|
|
|
|
namespace Easter2025.Customs.Generics
|
|
{
|
|
public abstract class GenericStackableItemGroup : CustomItemGroup
|
|
{
|
|
public override ItemStorage ItemStorageFlags => ItemStorage.StackableFood;
|
|
}
|
|
} |