9 lines
206 B
C#
9 lines
206 B
C#
using GameCore.ECS;
|
|
using GameCore.ECS.Interfaces;
|
|
|
|
namespace GameCore.Interaction;
|
|
|
|
public class IsLookingAtInteractableComponent(Entity target) : IComponent
|
|
{
|
|
public readonly Entity Target = target;
|
|
} |