From 86b9db821a2b32eaed20ac49cd099920e27646f0 Mon Sep 17 00:00:00 2001 From: John Michael Gross Date: Mon, 17 Oct 2016 01:14:47 -0700 Subject: [PATCH] idk i wrote this 3 weeks ago --- .../MTObservableCollection.cs | 0 Piston/{ => Collections}/PlayerInfoCache.cs | 0 .../MyPlayerCollectionExtensions.cs | 0 Piston/{ => Extensions}/StringExtensions.cs | 0 Piston/Piston.csproj | 10 +- Piston/PistonPlugin.cs | 13 ++ PistonClient/GameInitializer.cs | 158 +++++++++++++++++ PistonClient/Piston.Client.csproj | 6 + PistonClient/PistonConsoleScreen.cs | 63 +++++++ PistonClient/PistonSettingsScreen.cs | 3 +- PistonClient/Program.cs | 159 +----------------- 11 files changed, 256 insertions(+), 156 deletions(-) rename Piston/{ => Collections}/MTObservableCollection.cs (100%) rename Piston/{ => Collections}/PlayerInfoCache.cs (100%) rename Piston/{ => Extensions}/MyPlayerCollectionExtensions.cs (100%) rename Piston/{ => Extensions}/StringExtensions.cs (100%) create mode 100644 Piston/PistonPlugin.cs create mode 100644 PistonClient/GameInitializer.cs create mode 100644 PistonClient/PistonConsoleScreen.cs diff --git a/Piston/MTObservableCollection.cs b/Piston/Collections/MTObservableCollection.cs similarity index 100% rename from Piston/MTObservableCollection.cs rename to Piston/Collections/MTObservableCollection.cs diff --git a/Piston/PlayerInfoCache.cs b/Piston/Collections/PlayerInfoCache.cs similarity index 100% rename from Piston/PlayerInfoCache.cs rename to Piston/Collections/PlayerInfoCache.cs diff --git a/Piston/MyPlayerCollectionExtensions.cs b/Piston/Extensions/MyPlayerCollectionExtensions.cs similarity index 100% rename from Piston/MyPlayerCollectionExtensions.cs rename to Piston/Extensions/MyPlayerCollectionExtensions.cs diff --git a/Piston/StringExtensions.cs b/Piston/Extensions/StringExtensions.cs similarity index 100% rename from Piston/StringExtensions.cs rename to Piston/Extensions/StringExtensions.cs diff --git a/Piston/Piston.csproj b/Piston/Piston.csproj index 231e886..4befa94 100644 --- a/Piston/Piston.csproj +++ b/Piston/Piston.csproj @@ -123,14 +123,15 @@ + - + - - + + - + @@ -142,6 +143,7 @@ Piston.API +