Files
Pets-Public/Components/Properties/CRoamNearOwner.cs
T
Lachlan Leone 323c611016 v0.1.1
2024-01-20 22:32:35 +11:00

15 lines
268 B
C#

using KitchenMods;
using Pets.Interfaces;
namespace Pets.Components.Properties
{
public struct CRoamNearOwner : IPetProperty, IModComponent
{
public float Distance;
public CRoamNearOwner()
{
Distance = 3;
}
}
}