11 lines
230 B
C#
11 lines
230 B
C#
using KitchenMods;
|
|
using Pets.Interfaces;
|
|
using Unity.Collections;
|
|
|
|
namespace Pets.Components.Properties
|
|
{
|
|
public struct CPreferredFoods : IPetProperty, IModComponent
|
|
{
|
|
public FixedListInt32 PreferredFoods;
|
|
}
|
|
} |