11 lines
210 B
C#
11 lines
210 B
C#
using KitchenMods;
|
|
using Unity.Entities;
|
|
|
|
namespace Pets.Components.Menu
|
|
{
|
|
public struct CTriggerPetEditor : IModComponent
|
|
{
|
|
public bool IsTriggered;
|
|
public Entity TriggerEntity;
|
|
}
|
|
} |