2024-01-20 22:32:35 +11:00
|
|
|
using KitchenMods;
|
2024-01-20 20:00:35 +11:00
|
|
|
using Pets.Interfaces;
|
|
|
|
|
|
|
|
|
|
namespace Pets.Components.Properties
|
|
|
|
|
{
|
2024-01-20 22:32:35 +11:00
|
|
|
public struct CRoamNearOwner : IPetProperty, IModComponent
|
2024-01-20 20:00:35 +11:00
|
|
|
{
|
|
|
|
|
public float Distance;
|
|
|
|
|
|
|
|
|
|
public CRoamNearOwner()
|
|
|
|
|
{
|
|
|
|
|
Distance = 3;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|