Files
tbd-station-14/Content.Server/Objectives/Interfaces/IObjectivesManager.cs
2022-11-16 12:58:47 -08:00

11 lines
323 B
C#

namespace Content.Server.Objectives.Interfaces
{
public interface IObjectivesManager
{
/// <summary>
/// Returns a randomly picked objective the provided mind is valid for.
/// </summary>
ObjectivePrototype? GetRandomObjective(Mind.Mind mind, string objectiveGroupProto);
}
}