Initial Commit
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
using Pets.Interfaces;
|
||||
using Unity.Collections;
|
||||
|
||||
namespace Pets.Components.Properties
|
||||
{
|
||||
public struct CActivities : IPetProperty
|
||||
{
|
||||
public FixedListInt64 Activities;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
using Pets.Interfaces;
|
||||
|
||||
namespace Pets.Components.Properties
|
||||
{
|
||||
public struct CLonelyDistance : IPetProperty
|
||||
{
|
||||
public float Distance;
|
||||
|
||||
public CLonelyDistance()
|
||||
{
|
||||
Distance = 4.5f;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
using Pets.Interfaces;
|
||||
using Unity.Collections;
|
||||
|
||||
namespace Pets.Components.Properties
|
||||
{
|
||||
public struct CPreferredFoods : IPetProperty
|
||||
{
|
||||
public FixedListInt32 PreferredFoods;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
using Pets.Interfaces;
|
||||
|
||||
namespace Pets.Components.Properties
|
||||
{
|
||||
public struct CRoamNearOwner : IPetProperty
|
||||
{
|
||||
public float Distance;
|
||||
|
||||
public CRoamNearOwner()
|
||||
{
|
||||
Distance = 3;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
using Pets.Interfaces;
|
||||
using UnityEngine;
|
||||
|
||||
namespace Pets.Components.Properties
|
||||
{
|
||||
public struct CSleepingPositionOffset : IPetProperty
|
||||
{
|
||||
public Vector2 Offset;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
using Pets.Interfaces;
|
||||
|
||||
namespace Pets.Components.Properties
|
||||
{
|
||||
public struct CStandBackFromFood : IPetProperty
|
||||
{
|
||||
public float Distance;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
using Pets.Interfaces;
|
||||
using Unity.Collections;
|
||||
|
||||
namespace Pets.Components.Properties
|
||||
{
|
||||
public struct CStapleAppliances : IPetProperty
|
||||
{
|
||||
public FixedListInt64 Appliances;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user