14 lines
239 B
C#
14 lines
239 B
C#
using Pets.Interfaces;
|
|
|
|
namespace Pets.Components.Properties
|
|
{
|
|
public struct CLonelyDistance : IPetProperty
|
|
{
|
|
public float Distance;
|
|
|
|
public CLonelyDistance()
|
|
{
|
|
Distance = 4.5f;
|
|
}
|
|
}
|
|
} |