Files
brick-framework/GameCore/Interaction/IsLookingAtInteractableComponent.cs

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;
}