namespace Content.Server.AI.Utility.Curves { /// /// Using an interface also lets us define preset curves that can be re-used /// public interface IResponseCurve { float GetResponse(float score); } }