Initial Commit

This commit is contained in:
Lachlan Leone
2024-01-20 20:00:35 +11:00
commit d78ae93c97
70 changed files with 3212 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
using Kitchen;
using KitchenMods;
namespace Pets.Components.Menu
{
public struct CPetEditorInfo : IModComponent
{
public InputIdentifier Player;
public bool IsComplete;
}
}
+11
View File
@@ -0,0 +1,11 @@
using KitchenMods;
using Unity.Entities;
namespace Pets.Components.Menu
{
public struct CTriggerPetEditor : IModComponent
{
public bool IsTriggered;
public Entity TriggerEntity;
}
}