12 lines
228 B
C#
12 lines
228 B
C#
using KitchenMods;
|
|
using Unity.Entities;
|
|
|
|
namespace Pets.Components.Creation
|
|
{
|
|
public struct CLinkedPet : IModComponent
|
|
{
|
|
public int PetType;
|
|
public Entity PetEntity;
|
|
public int PetLinkId;
|
|
}
|
|
} |