Files
tbd-station-14/Content.Server/Objectives/Interfaces/IObjectivesManager.cs
2022-05-13 17:59:03 +10:00

16 lines
490 B
C#

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