diff options
Diffstat (limited to 'src/SMAPI/IPrivateMethod.cs')
-rw-r--r-- | src/SMAPI/IPrivateMethod.cs | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/src/SMAPI/IPrivateMethod.cs b/src/SMAPI/IPrivateMethod.cs deleted file mode 100644 index c24db602..00000000 --- a/src/SMAPI/IPrivateMethod.cs +++ /dev/null @@ -1,31 +0,0 @@ -#if !STARDEW_VALLEY_1_3 -using System; -using System.Reflection; - -namespace StardewModdingAPI -{ - /// <summary>A private method obtained through reflection.</summary> - [Obsolete("Use " + nameof(IReflectedMethod) + " instead")] - public interface IPrivateMethod - { - /********* - ** Accessors - *********/ - /// <summary>The reflection metadata.</summary> - MethodInfo MethodInfo { get; } - - - /********* - ** Public methods - *********/ - /// <summary>Invoke the method.</summary> - /// <typeparam name="TValue">The return type.</typeparam> - /// <param name="arguments">The method arguments to pass in.</param> - TValue Invoke<TValue>(params object[] arguments); - - /// <summary>Invoke the method.</summary> - /// <param name="arguments">The method arguments to pass in.</param> - void Invoke(params object[] arguments); - } -} -#endif |