10 lines
196 B
C#
10 lines
196 B
C#
|
|
using Pets.Interfaces;
|
||
|
|
using Unity.Collections;
|
||
|
|
|
||
|
|
namespace Pets.Components.Properties
|
||
|
|
{
|
||
|
|
public struct CPreferredFoods : IPetProperty
|
||
|
|
{
|
||
|
|
public FixedListInt32 PreferredFoods;
|
||
|
|
}
|
||
|
|
}
|