2024-11-03 22:29:26 -05:00
|
|
|
using SabreTools.RedumpLib.Data;
|
|
|
|
|
|
|
|
|
|
namespace MPF.Frontend
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Determines how user information is processed, if at all
|
|
|
|
|
/// </summary>
|
2026-02-07 15:11:46 -05:00
|
|
|
/// <param name="options">Options set that may impact processing</params>
|
2024-11-03 22:29:26 -05:00
|
|
|
/// <param name="info">Submission info that may be overwritten</param>
|
|
|
|
|
/// <returns>True for successful updating, false or null otherwise</returns>
|
2026-02-07 15:11:46 -05:00
|
|
|
public delegate bool? ProcessUserInfoDelegate(Options? options, ref SubmissionInfo? info);
|
2025-11-11 15:52:26 -05:00
|
|
|
}
|