diff --git a/Il2CppInspector.GUI/App.xaml b/Il2CppInspector.GUI/App.xaml new file mode 100644 index 0000000..51e3da0 --- /dev/null +++ b/Il2CppInspector.GUI/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/Il2CppInspector.GUI/App.xaml.cs b/Il2CppInspector.GUI/App.xaml.cs new file mode 100644 index 0000000..f297865 --- /dev/null +++ b/Il2CppInspector.GUI/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 Il2CppInspector.GUI +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/Il2CppInspector.GUI/AssemblyInfo.cs b/Il2CppInspector.GUI/AssemblyInfo.cs new file mode 100644 index 0000000..8b5504e --- /dev/null +++ b/Il2CppInspector.GUI/AssemblyInfo.cs @@ -0,0 +1,10 @@ +using System.Windows; + +[assembly: ThemeInfo( + ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located + //(used if a resource is not found in the page, + // or application resource dictionaries) + ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located + //(used if a resource is not found in the page, + // app, or any theme specific resource dictionaries) +)] diff --git a/Il2CppInspector.GUI/Il2CppInspector.GUI.csproj b/Il2CppInspector.GUI/Il2CppInspector.GUI.csproj new file mode 100644 index 0000000..116f2e3 --- /dev/null +++ b/Il2CppInspector.GUI/Il2CppInspector.GUI.csproj @@ -0,0 +1,18 @@ + + + + WinExe + netcoreapp3.1 + true + Il2CppInspector + 2.0 + Katy Coe + Noisy Cow Studios + Il2CppInspector Windows Edition + + + + + + + \ No newline at end of file diff --git a/Il2CppInspector.GUI/MainWindow.xaml b/Il2CppInspector.GUI/MainWindow.xaml new file mode 100644 index 0000000..7cfedc1 --- /dev/null +++ b/Il2CppInspector.GUI/MainWindow.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/Il2CppInspector.GUI/MainWindow.xaml.cs b/Il2CppInspector.GUI/MainWindow.xaml.cs new file mode 100644 index 0000000..0d85bde --- /dev/null +++ b/Il2CppInspector.GUI/MainWindow.xaml.cs @@ -0,0 +1,27 @@ +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 Il2CppInspector.GUI +{ + /// + /// Interaction logic for MainWindow.xaml + /// + public partial class MainWindow : Window + { + public MainWindow() { + InitializeComponent(); + } + } +} diff --git a/Il2CppInspector.sln b/Il2CppInspector.sln index e00f6e7..6c75b5d 100644 --- a/Il2CppInspector.sln +++ b/Il2CppInspector.sln @@ -22,6 +22,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution README.md = README.md EndProjectSection EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Il2CppInspector.GUI", "Il2CppInspector.GUI\Il2CppInspector.GUI.csproj", "{A24D77DA-8A64-4AD3-956A-677A96F20373}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -44,6 +46,10 @@ Global {389E4BDF-A749-4554-848B-32B3B6EE5684}.Debug|Any CPU.Build.0 = Debug|Any CPU {389E4BDF-A749-4554-848B-32B3B6EE5684}.Release|Any CPU.ActiveCfg = Release|Any CPU {389E4BDF-A749-4554-848B-32B3B6EE5684}.Release|Any CPU.Build.0 = Release|Any CPU + {A24D77DA-8A64-4AD3-956A-677A96F20373}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A24D77DA-8A64-4AD3-956A-677A96F20373}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A24D77DA-8A64-4AD3-956A-677A96F20373}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A24D77DA-8A64-4AD3-956A-677A96F20373}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE