r2mods/ilspy_dump/ror2_csproj/RoR2.GamepadVibration/GamepadVibrationControllerR...

16 lines
444 B
C#
Raw Normal View History

2024-10-04 07:26:37 +00:00
using System;
using HG.Reflection;
namespace RoR2.GamepadVibration;
[AttributeUsage(AttributeTargets.Method, AllowMultiple = true, Inherited = false)]
public class GamepadVibrationControllerResolverAttribute : HG.Reflection.SearchableAttribute
{
public readonly Type vibrationControllerType;
public GamepadVibrationControllerResolverAttribute(Type vibrationControllerType)
{
this.vibrationControllerType = vibrationControllerType;
}
}