From 8749b5fd1181dd22da935fd7133191fae05aa422 Mon Sep 17 00:00:00 2001 From: Milan Lustig <59667714+green726@users.noreply.github.com> Date: Wed, 13 Jul 2022 23:10:32 -0400 Subject: [PATCH] added the HIP folder --- .gitignore | 1 + HIP/EEE.txt | 0 Installer/src/Installations.cs | 12 +++++++++--- Language/.gitignore | 1 - Language/Program.cs | 2 +- 5 files changed, 11 insertions(+), 5 deletions(-) create mode 100644 .gitignore create mode 100644 HIP/EEE.txt delete mode 100644 Language/.gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..808f3f3 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/language/bin/ diff --git a/HIP/EEE.txt b/HIP/EEE.txt new file mode 100644 index 0000000..e69de29 diff --git a/Installer/src/Installations.cs b/Installer/src/Installations.cs index 49b420e..8a32cf5 100644 --- a/Installer/src/Installations.cs +++ b/Installer/src/Installations.cs @@ -1,14 +1,20 @@ - +using System.Net; public static class Installations { + public static WebClient client = new WebClient(); + public static Uri HIPPath = new Uri("https://github.com/green726/HISS"); + public static Uri languagePath = new Uri("https://github.com/green726/HISS"); + + public static void installHIP(string path) { - + client.DownloadFileAsync(); + installLanguage(path); } public static void installLanguage(string path) { - + client.DownloadFileAsync(); } } diff --git a/Language/.gitignore b/Language/.gitignore deleted file mode 100644 index e660fd9..0000000 --- a/Language/.gitignore +++ /dev/null @@ -1 +0,0 @@ -bin/ diff --git a/Language/Program.cs b/Language/Program.cs index a051c30..723cc1f 100644 --- a/Language/Program.cs +++ b/Language/Program.cs @@ -44,4 +44,4 @@ static void Main(string[] args) EXE.compileEXE(windows); } -} +} \ No newline at end of file