diff --git a/VRCExternalTools.sln b/VRCExternalTools.sln new file mode 100644 index 0000000..96ee09d --- /dev/null +++ b/VRCExternalTools.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29926.136 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VRCExternalTools", "VRCExternalTools\VRCExternalTools.csproj", "{12F51A26-2AE2-4798-9087-516F7BC3B788}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {12F51A26-2AE2-4798-9087-516F7BC3B788}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {12F51A26-2AE2-4798-9087-516F7BC3B788}.Debug|Any CPU.Build.0 = Debug|Any CPU + {12F51A26-2AE2-4798-9087-516F7BC3B788}.Release|Any CPU.ActiveCfg = Release|Any CPU + {12F51A26-2AE2-4798-9087-516F7BC3B788}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {8C051168-3506-465E-A54B-B3E613B01B97} + EndGlobalSection +EndGlobal diff --git a/VRCExternalTools/App.config b/VRCExternalTools/App.config new file mode 100644 index 0000000..550a390 --- /dev/null +++ b/VRCExternalTools/App.config @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/VRCExternalTools/App.xaml b/VRCExternalTools/App.xaml new file mode 100644 index 0000000..4929cd9 --- /dev/null +++ b/VRCExternalTools/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/VRCExternalTools/App.xaml.cs b/VRCExternalTools/App.xaml.cs new file mode 100644 index 0000000..3a0c1dc --- /dev/null +++ b/VRCExternalTools/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 VRCExternalTools +{ + /// + /// App.xaml の相互作用ロジック + /// + public partial class App : Application + { + } +} diff --git a/VRCExternalTools/Friend.cs b/VRCExternalTools/Friend.cs new file mode 100644 index 0000000..79265a5 --- /dev/null +++ b/VRCExternalTools/Friend.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace VRCExternalTools +{ + class Friend + { + public String id { get; set; } + + public Friend(String userId) + { + id = userId; + } + } +} + diff --git a/VRCExternalTools/MainWindow.xaml b/VRCExternalTools/MainWindow.xaml new file mode 100644 index 0000000..d19ec9a --- /dev/null +++ b/VRCExternalTools/MainWindow.xaml @@ -0,0 +1,57 @@ + + + + + +