diff --git a/.vs/UWPHook/v14/.suo b/.vs/UWPHook/v14/.suo new file mode 100644 index 0000000..8215259 Binary files /dev/null and b/.vs/UWPHook/v14/.suo differ diff --git a/UWPHook.sln b/UWPHook.sln new file mode 100644 index 0000000..5ff1d14 --- /dev/null +++ b/UWPHook.sln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 14 +VisualStudioVersion = 14.0.25420.1 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UWPHook", "UWPHook\UWPHook.csproj", "{AFE09BCF-28A4-48EE-876B-FEF080D04D5F}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {AFE09BCF-28A4-48EE-876B-FEF080D04D5F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {AFE09BCF-28A4-48EE-876B-FEF080D04D5F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {AFE09BCF-28A4-48EE-876B-FEF080D04D5F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {AFE09BCF-28A4-48EE-876B-FEF080D04D5F}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/UWPHook/App.config b/UWPHook/App.config new file mode 100644 index 0000000..731f6de --- /dev/null +++ b/UWPHook/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/UWPHook/App.xaml b/UWPHook/App.xaml new file mode 100644 index 0000000..21febfc --- /dev/null +++ b/UWPHook/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/UWPHook/App.xaml.cs b/UWPHook/App.xaml.cs new file mode 100644 index 0000000..cdc6972 --- /dev/null +++ b/UWPHook/App.xaml.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Data; +using System.Linq; +using System.Threading.Tasks; +using System.Windows; + +namespace UWPHook +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/UWPHook/GameControl.xaml b/UWPHook/GameControl.xaml new file mode 100644 index 0000000..5fdbc16 --- /dev/null +++ b/UWPHook/GameControl.xaml @@ -0,0 +1,14 @@ + + + + + + + + diff --git a/UWPHook/GameControl.xaml.cs b/UWPHook/GameControl.xaml.cs new file mode 100644 index 0000000..b256dbb --- /dev/null +++ b/UWPHook/GameControl.xaml.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; + +namespace UWPHook +{ + /// + /// Interaction logic for Game.xaml + /// + public partial class Game : UserControl + { + public Game() + { + InitializeComponent(); + } + } +} diff --git a/UWPHook/GameModel.cs b/UWPHook/GameModel.cs new file mode 100644 index 0000000..4ef9a01 --- /dev/null +++ b/UWPHook/GameModel.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using System.ComponentModel; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Data; + +namespace UWPHook +{ + class GameModel + { + public string game_alias { get; set; } + public string game_path { get; set; } + } +} diff --git a/UWPHook/MainWindow.xaml b/UWPHook/MainWindow.xaml new file mode 100644 index 0000000..c33d904 --- /dev/null +++ b/UWPHook/MainWindow.xaml @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +