From 07bc652b1a6343c4c8bf394be3da16bff3b0d7b1 Mon Sep 17 00:00:00 2001 From: Anairkoen Schno Date: Wed, 23 Oct 2019 18:33:28 -0500 Subject: [PATCH] Added remaining using directives to LibLoader to make it compile for Net3 --- IPA.Loader/Loader/LibLoader.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/IPA.Loader/Loader/LibLoader.cs b/IPA.Loader/Loader/LibLoader.cs index c0a7ce64..6e7e0459 100644 --- a/IPA.Loader/Loader/LibLoader.cs +++ b/IPA.Loader/Loader/LibLoader.cs @@ -11,6 +11,8 @@ using Mono.Cecil; #if NET3 using Net3_Proxy; using Directory = Net3_Proxy.Directory; +using Path = Net3_Proxy.Path; +using File = Net3_Proxy.File; #endif namespace IPA.Loader