This commit is contained in:
Lachlan Leone
2024-01-20 22:32:35 +11:00
parent dc543cba36
commit 323c611016
11 changed files with 22 additions and 9 deletions
+3
View File
@@ -0,0 +1,3 @@
# Release Notes v0.1.0
- Fixed loading issues
+3
View File
@@ -0,0 +1,3 @@
[h1]Release Notes v0.1.1[/h1]
- Fixed loading issues
+2 -1
View File
@@ -1,9 +1,10 @@
using KitchenMods;
using Pets.Interfaces; using Pets.Interfaces;
using Unity.Collections; using Unity.Collections;
namespace Pets.Components.Properties namespace Pets.Components.Properties
{ {
public struct CActivities : IPetProperty public struct CActivities : IPetProperty, IModComponent
{ {
public FixedListInt64 Activities; public FixedListInt64 Activities;
} }
+2 -1
View File
@@ -1,8 +1,9 @@
using KitchenMods;
using Pets.Interfaces; using Pets.Interfaces;
namespace Pets.Components.Properties namespace Pets.Components.Properties
{ {
public struct CLonelyDistance : IPetProperty public struct CLonelyDistance : IPetProperty, IModComponent
{ {
public float Distance; public float Distance;
+2 -1
View File
@@ -1,9 +1,10 @@
using KitchenMods;
using Pets.Interfaces; using Pets.Interfaces;
using Unity.Collections; using Unity.Collections;
namespace Pets.Components.Properties namespace Pets.Components.Properties
{ {
public struct CPreferredFoods : IPetProperty public struct CPreferredFoods : IPetProperty, IModComponent
{ {
public FixedListInt32 PreferredFoods; public FixedListInt32 PreferredFoods;
} }
+2 -1
View File
@@ -1,8 +1,9 @@
using KitchenMods;
using Pets.Interfaces; using Pets.Interfaces;
namespace Pets.Components.Properties namespace Pets.Components.Properties
{ {
public struct CRoamNearOwner : IPetProperty public struct CRoamNearOwner : IPetProperty, IModComponent
{ {
public float Distance; public float Distance;
@@ -1,9 +1,10 @@
using KitchenMods;
using Pets.Interfaces; using Pets.Interfaces;
using UnityEngine; using UnityEngine;
namespace Pets.Components.Properties namespace Pets.Components.Properties
{ {
public struct CSleepingPositionOffset : IPetProperty public struct CSleepingPositionOffset : IPetProperty, IModComponent
{ {
public Vector2 Offset; public Vector2 Offset;
} }
+2 -1
View File
@@ -1,8 +1,9 @@
using KitchenMods;
using Pets.Interfaces; using Pets.Interfaces;
namespace Pets.Components.Properties namespace Pets.Components.Properties
{ {
public struct CStandBackFromFood : IPetProperty public struct CStandBackFromFood : IPetProperty, IModComponent
{ {
public float Distance; public float Distance;
} }
+2 -1
View File
@@ -1,9 +1,10 @@
using KitchenMods;
using Pets.Interfaces; using Pets.Interfaces;
using Unity.Collections; using Unity.Collections;
namespace Pets.Components.Properties namespace Pets.Components.Properties
{ {
public struct CStapleAppliances : IPetProperty public struct CStapleAppliances : IPetProperty, IModComponent
{ {
public FixedListInt64 Appliances; public FixedListInt64 Appliances;
} }
+1 -1
View File
@@ -2,7 +2,7 @@ using KitchenMods;
namespace Pets.Interfaces namespace Pets.Interfaces
{ {
public interface IPetProperty : IModComponent public interface IPetProperty
{ {
} }
+1 -1
View File
@@ -20,7 +20,7 @@ namespace Pets
{ {
public const string MOD_GUID = "com.starfluxgames.pets"; public const string MOD_GUID = "com.starfluxgames.pets";
public const string MOD_NAME = "Pets"; public const string MOD_NAME = "Pets";
public const string MOD_VERSION = "0.1.0"; public const string MOD_VERSION = "0.1.1";
public const string MOD_AUTHOR = "StarFluxGames"; public const string MOD_AUTHOR = "StarFluxGames";
public const string MOD_GAMEVERSION = ">=1.1.8"; public const string MOD_GAMEVERSION = ">=1.1.8";