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

14 lines
234 B
C#
Raw Normal View History

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