Files
Pets-Public/Components/Creation/CLinkedPet.cs
T

12 lines
228 B
C#
Raw Normal View History

2024-01-20 20:00:35 +11:00
using KitchenMods;
using Unity.Entities;
namespace Pets.Components.Creation
{
public struct CLinkedPet : IModComponent
{
public int PetType;
public Entity PetEntity;
public int PetLinkId;
}
}