Files
tbd-station-14/Content.Server/Objectives/Interfaces/IObjectivesManager.cs
Vera Aguilera Puerto b8220a3cd6 Fix build and warnings
2020-12-01 17:23:46 +01:00

19 lines
541 B
C#

using System.Collections.Generic;
using Content.Server.Mobs;
namespace Content.Server.Objectives.Interfaces
{
public interface IObjectivesManager
{
/// <summary>
/// Returns all objectives the provided mind is valid for.
/// </summary>
IEnumerable<ObjectivePrototype> GetAllPossibleObjectives(Mind mind);
/// <summary>
/// Returns a randomly picked objective the provided mind is valid for.
/// </summary>
ObjectivePrototype GetRandomObjective(Mind mind);
}
}