Files
crystall-punk-14/Content.Server/AI/LoadBalancer/AiActionRequest.cs

22 lines
598 B
C#
Raw Normal View History

using System.Collections.Generic;
using Content.Server.AI.Utility.Actions;
using Content.Server.AI.WorldState;
using Robust.Shared.GameObjects;
2021-06-09 22:19:39 +02:00
namespace Content.Server.AI.LoadBalancer
{
public sealed class AiActionRequest
{
public EntityUid EntityUid { get; }
public Blackboard? Context { get; }
public IEnumerable<IAiUtility>? Actions { get; }
public AiActionRequest(EntityUid uid, Blackboard context, IEnumerable<IAiUtility> actions)
{
EntityUid = uid;
Context = context;
Actions = actions;
}
}
}