v0.1.1
This commit is contained in:
@@ -1,9 +1,10 @@
|
||||
using KitchenMods;
|
||||
using Pets.Interfaces;
|
||||
using Unity.Collections;
|
||||
|
||||
namespace Pets.Components.Properties
|
||||
{
|
||||
public struct CActivities : IPetProperty
|
||||
public struct CActivities : IPetProperty, IModComponent
|
||||
{
|
||||
public FixedListInt64 Activities;
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
using KitchenMods;
|
||||
using Pets.Interfaces;
|
||||
|
||||
namespace Pets.Components.Properties
|
||||
{
|
||||
public struct CLonelyDistance : IPetProperty
|
||||
public struct CLonelyDistance : IPetProperty, IModComponent
|
||||
{
|
||||
public float Distance;
|
||||
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
using KitchenMods;
|
||||
using Pets.Interfaces;
|
||||
using Unity.Collections;
|
||||
|
||||
namespace Pets.Components.Properties
|
||||
{
|
||||
public struct CPreferredFoods : IPetProperty
|
||||
public struct CPreferredFoods : IPetProperty, IModComponent
|
||||
{
|
||||
public FixedListInt32 PreferredFoods;
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
using KitchenMods;
|
||||
using Pets.Interfaces;
|
||||
|
||||
namespace Pets.Components.Properties
|
||||
{
|
||||
public struct CRoamNearOwner : IPetProperty
|
||||
public struct CRoamNearOwner : IPetProperty, IModComponent
|
||||
{
|
||||
public float Distance;
|
||||
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
using KitchenMods;
|
||||
using Pets.Interfaces;
|
||||
using UnityEngine;
|
||||
|
||||
namespace Pets.Components.Properties
|
||||
{
|
||||
public struct CSleepingPositionOffset : IPetProperty
|
||||
public struct CSleepingPositionOffset : IPetProperty, IModComponent
|
||||
{
|
||||
public Vector2 Offset;
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
using KitchenMods;
|
||||
using Pets.Interfaces;
|
||||
|
||||
namespace Pets.Components.Properties
|
||||
{
|
||||
public struct CStandBackFromFood : IPetProperty
|
||||
public struct CStandBackFromFood : IPetProperty, IModComponent
|
||||
{
|
||||
public float Distance;
|
||||
}
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
using KitchenMods;
|
||||
using Pets.Interfaces;
|
||||
using Unity.Collections;
|
||||
|
||||
namespace Pets.Components.Properties
|
||||
{
|
||||
public struct CStapleAppliances : IPetProperty
|
||||
public struct CStapleAppliances : IPetProperty, IModComponent
|
||||
{
|
||||
public FixedListInt64 Appliances;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user