using System;
namespace BizHawk.Client.Common
{
/// Indicates which method of an is to be called when the generated Restore Defaults menu item is clicked.
/// If not present on any instance method, the menu item will do nothing. If present on multiple, the first will be called.
[AttributeUsage(AttributeTargets.Method)]
public sealed class RestoreDefaultsAttribute : Attribute
{
}
}