Files
Pets-Public/Components/Properties/CRoamNearOwner.cs
T
Lachlan Leone d78ae93c97 Initial Commit
2024-01-20 20:00:35 +11:00

14 lines
234 B
C#

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