mirror of
https://github.com/SabreTools/MPF.git
synced 2026-02-04 05:35:52 +00:00
13 lines
491 B
C#
13 lines
491 B
C#
using SabreTools.RedumpLib.Data;
|
|
|
|
namespace MPF.Frontend
|
|
{
|
|
/// <summary>
|
|
/// Determines how user information is processed, if at all
|
|
/// </summary>
|
|
/// <param name="options">Options set that may impact processing</params>
|
|
/// <param name="info">Submission info that may be overwritten</param>
|
|
/// <returns>True for successful updating, false or null otherwise</returns>
|
|
public delegate bool? ProcessUserInfoDelegate(Options? options, ref SubmissionInfo? info);
|
|
}
|