11 lines
323 B
C#
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);
|
|
}
|
|
}
|