Browse Source

Fixed Array.Empty for .NET 3

pull/46/head
Anairkoen Schno 4 years ago
parent
commit
9026ecbe1b
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      IPA.Loader/Loader/PluginManifest.cs

+ 4
- 0
IPA.Loader/Loader/PluginManifest.cs View File

@ -6,6 +6,10 @@ using System;
using System.Collections.Generic;
using AlmostVersionConverter = IPA.JsonConverters.AlmostVersionConverter;
using Version = SemVer.Version;
#if NET3
using Net3_Proxy;
using Array = Net3_Proxy.Array;
#endif
namespace IPA.Loader
{


Loading…
Cancel
Save