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