From e9334d20e8a875f55202b542365a3e13af17d02b Mon Sep 17 00:00:00 2001 From: Luca Pulga <68555926+LucaPulga@users.noreply.github.com> Date: Mon, 17 May 2021 15:14:10 +0200 Subject: [PATCH] Aggiungere i file di progetto. --- App.config | 6 + App.xaml | 18 ++ App.xaml.cs | 17 ++ MainWindow.xaml | 27 ++ MainWindow.xaml.cs | 238 ++++++++++++++++++ Properties/AssemblyInfo.cs | 55 ++++ Properties/Resources.Designer.cs | 70 ++++++ Properties/Resources.resx | 117 +++++++++ Properties/Settings.Designer.cs | 29 +++ Properties/Settings.settings | 7 + TcpGameClient.csproj | 123 +++++++++ TcpGameClient.sln | 25 ++ TcpGameServer/App.config | 6 + TcpGameServer/App.xaml | 18 ++ TcpGameServer/App.xaml.cs | 17 ++ TcpGameServer/MainWindow.xaml | 30 +++ TcpGameServer/MainWindow.xaml.cs | 237 +++++++++++++++++ TcpGameServer/Properties/AssemblyInfo.cs | 55 ++++ .../Properties/Resources.Designer.cs | 70 ++++++ TcpGameServer/Properties/Resources.resx | 117 +++++++++ TcpGameServer/Properties/Settings.Designer.cs | 29 +++ TcpGameServer/Properties/Settings.settings | 7 + TcpGameServer/TcpGameServer.csproj | 123 +++++++++ TcpGameServer/TcpGameServer.sln | 25 ++ TcpGameServer/icons8_the_flash_sign.ico | Bin 0 -> 5430 bytes TcpGameServer/packages.config | 5 + TcpGameServer/speed.jpg | Bin 0 -> 12690 bytes icons8_the_flash_sign.ico | Bin 0 -> 5430 bytes packages.config | 5 + speed.jpg | Bin 0 -> 12690 bytes 30 files changed, 1476 insertions(+) create mode 100644 App.config create mode 100644 App.xaml create mode 100644 App.xaml.cs create mode 100644 MainWindow.xaml create mode 100644 MainWindow.xaml.cs create mode 100644 Properties/AssemblyInfo.cs create mode 100644 Properties/Resources.Designer.cs create mode 100644 Properties/Resources.resx create mode 100644 Properties/Settings.Designer.cs create mode 100644 Properties/Settings.settings create mode 100644 TcpGameClient.csproj create mode 100644 TcpGameClient.sln create mode 100644 TcpGameServer/App.config create mode 100644 TcpGameServer/App.xaml create mode 100644 TcpGameServer/App.xaml.cs create mode 100644 TcpGameServer/MainWindow.xaml create mode 100644 TcpGameServer/MainWindow.xaml.cs create mode 100644 TcpGameServer/Properties/AssemblyInfo.cs create mode 100644 TcpGameServer/Properties/Resources.Designer.cs create mode 100644 TcpGameServer/Properties/Resources.resx create mode 100644 TcpGameServer/Properties/Settings.Designer.cs create mode 100644 TcpGameServer/Properties/Settings.settings create mode 100644 TcpGameServer/TcpGameServer.csproj create mode 100644 TcpGameServer/TcpGameServer.sln create mode 100644 TcpGameServer/icons8_the_flash_sign.ico create mode 100644 TcpGameServer/packages.config create mode 100644 TcpGameServer/speed.jpg create mode 100644 icons8_the_flash_sign.ico create mode 100644 packages.config create mode 100644 speed.jpg diff --git a/App.config b/App.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/App.xaml b/App.xaml new file mode 100644 index 0000000..d8319ba --- /dev/null +++ b/App.xaml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + diff --git a/App.xaml.cs b/App.xaml.cs new file mode 100644 index 0000000..a066e8f --- /dev/null +++ b/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 TcpGameClient +{ + /// + /// Logica di interazione per App.xaml + /// + public partial class App : Application + { + } +} diff --git a/MainWindow.xaml b/MainWindow.xaml new file mode 100644 index 0000000..c1414e9 --- /dev/null +++ b/MainWindow.xaml @@ -0,0 +1,27 @@ + + + + + +