Files
Pets-Public/Components/Properties/CPreferredFoods.cs
T

10 lines
196 B
C#
Raw Normal View History

2024-01-20 20:00:35 +11:00
using Pets.Interfaces;
using Unity.Collections;
namespace Pets.Components.Properties
{
public struct CPreferredFoods : IPetProperty
{
public FixedListInt32 PreferredFoods;
}
}