├── .gitignore ├── LetsCreateNetworkGame.OpenGL.Library ├── AI │ └── Movement │ │ ├── AttackMovement.cs │ │ ├── BaseMovement.cs │ │ └── RandomMovement.cs ├── Data.cs ├── Enemy.cs ├── Entity.cs ├── Enums.cs ├── LetsCreateNetworkGame.OpenGL.Library.csproj ├── Player.cs ├── Position.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── LetsCreateNetworkGame.OpenGL ├── BaseObject.cs ├── Component.cs ├── Components │ ├── Animation.cs │ ├── MainPlayer.cs │ ├── Name.cs │ └── Sprite.cs ├── Content │ ├── Content.mgcb │ ├── Octorok.xnb │ ├── Octorok_bullet.xnb │ ├── font.xnb │ └── white_background.xnb ├── Enums.cs ├── Game1.cs ├── Icon.ico ├── LetsCreateNetworkGame.OpenGL.csproj ├── Manager │ ├── ManagerEnemies.cs │ ├── ManagerInput.cs │ ├── ManagerNetwork.cs │ └── ManagerPlayers.cs ├── MyEventArgs │ ├── EnemyUpdateEventArgs.cs │ ├── KickPlayerEventArgs.cs │ ├── NewInputEventArgs.cs │ └── PlayerUpdateEventArgs.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── app.config └── packages.config ├── LetsCreateNetworkGame.Server ├── App.config ├── Commands │ ├── AllEnemiesCommand.cs │ ├── AllPlayersCommand.cs │ ├── ICommand.cs │ ├── InputCommand.cs │ ├── KickPlayerCommand.cs │ ├── LoginCommand.cs │ └── PlayerPositionCommand.cs ├── Data.cs ├── Forms │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ └── MainForm.resx ├── GameRoom.cs ├── LetsCreateNetworkGame.Server.csproj ├── Managers │ ├── ManagerCamera.cs │ ├── ManagerCollision.cs │ └── ManagerLogger.cs ├── MyEventArgs │ ├── LogMessageEventArgs.cs │ └── NewPlayerEventArgs.cs ├── PacketFactory.cs ├── PlayerAndConnection.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── Server.cs ├── Util │ └── LogMessage.cs ├── bin │ └── Debug │ │ ├── LetsCreateNetworkGame.Server.exe │ │ ├── LetsCreateNetworkGame.Server.exe.config │ │ ├── LetsCreateNetworkGame.Server.pdb │ │ ├── LetsCreateNetworkGame.Server.vshost.exe │ │ └── LetsCreateNetworkGame.Server.vshost.exe.config ├── obj │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── LetsCreateNetworkGame.Server.Forms.MainForm.resources │ │ ├── LetsCreateNetworkGame.Server.csproj.FileListAbsolute.txt │ │ ├── LetsCreateNetworkGame.Server.csproj.GenerateResource.Cache │ │ ├── LetsCreateNetworkGame.Server.csprojResolveAssemblyReference.cache │ │ ├── LetsCreateNetworkGame.Server.exe │ │ ├── LetsCreateNetworkGame.Server.pdb │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs └── packages.config ├── LetsCreateNetworkGame.sln └── LetsCreateNetworkGame.v12.suo /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/.gitignore -------------------------------------------------------------------------------- /LetsCreateNetworkGame.OpenGL.Library/AI/Movement/AttackMovement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.OpenGL.Library/AI/Movement/AttackMovement.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.OpenGL.Library/AI/Movement/BaseMovement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.OpenGL.Library/AI/Movement/BaseMovement.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.OpenGL.Library/AI/Movement/RandomMovement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.OpenGL.Library/AI/Movement/RandomMovement.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.OpenGL.Library/Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.OpenGL.Library/Data.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.OpenGL.Library/Enemy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.OpenGL.Library/Enemy.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.OpenGL.Library/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.OpenGL.Library/Entity.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.OpenGL.Library/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.OpenGL.Library/Enums.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.OpenGL.Library/LetsCreateNetworkGame.OpenGL.Library.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.OpenGL.Library/LetsCreateNetworkGame.OpenGL.Library.csproj -------------------------------------------------------------------------------- /LetsCreateNetworkGame.OpenGL.Library/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.OpenGL.Library/Player.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.OpenGL.Library/Position.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.OpenGL.Library/Position.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.OpenGL.Library/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.OpenGL.Library/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.OpenGL.Library/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.OpenGL.Library/packages.config -------------------------------------------------------------------------------- /LetsCreateNetworkGame.OpenGL/BaseObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.OpenGL/BaseObject.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.OpenGL/Component.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.OpenGL/Component.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.OpenGL/Components/Animation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.OpenGL/Components/Animation.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.OpenGL/Components/MainPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.OpenGL/Components/MainPlayer.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.OpenGL/Components/Name.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.OpenGL/Components/Name.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.OpenGL/Components/Sprite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.OpenGL/Components/Sprite.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.OpenGL/Content/Content.mgcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.OpenGL/Content/Content.mgcb -------------------------------------------------------------------------------- /LetsCreateNetworkGame.OpenGL/Content/Octorok.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.OpenGL/Content/Octorok.xnb -------------------------------------------------------------------------------- /LetsCreateNetworkGame.OpenGL/Content/Octorok_bullet.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.OpenGL/Content/Octorok_bullet.xnb -------------------------------------------------------------------------------- /LetsCreateNetworkGame.OpenGL/Content/font.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.OpenGL/Content/font.xnb -------------------------------------------------------------------------------- /LetsCreateNetworkGame.OpenGL/Content/white_background.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.OpenGL/Content/white_background.xnb -------------------------------------------------------------------------------- /LetsCreateNetworkGame.OpenGL/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.OpenGL/Enums.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.OpenGL/Game1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.OpenGL/Game1.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.OpenGL/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.OpenGL/Icon.ico -------------------------------------------------------------------------------- /LetsCreateNetworkGame.OpenGL/LetsCreateNetworkGame.OpenGL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.OpenGL/LetsCreateNetworkGame.OpenGL.csproj -------------------------------------------------------------------------------- /LetsCreateNetworkGame.OpenGL/Manager/ManagerEnemies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.OpenGL/Manager/ManagerEnemies.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.OpenGL/Manager/ManagerInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.OpenGL/Manager/ManagerInput.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.OpenGL/Manager/ManagerNetwork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.OpenGL/Manager/ManagerNetwork.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.OpenGL/Manager/ManagerPlayers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.OpenGL/Manager/ManagerPlayers.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.OpenGL/MyEventArgs/EnemyUpdateEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.OpenGL/MyEventArgs/EnemyUpdateEventArgs.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.OpenGL/MyEventArgs/KickPlayerEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.OpenGL/MyEventArgs/KickPlayerEventArgs.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.OpenGL/MyEventArgs/NewInputEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.OpenGL/MyEventArgs/NewInputEventArgs.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.OpenGL/MyEventArgs/PlayerUpdateEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.OpenGL/MyEventArgs/PlayerUpdateEventArgs.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.OpenGL/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.OpenGL/Program.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.OpenGL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.OpenGL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.OpenGL/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.OpenGL/app.config -------------------------------------------------------------------------------- /LetsCreateNetworkGame.OpenGL/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.OpenGL/packages.config -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.Server/App.config -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/Commands/AllEnemiesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.Server/Commands/AllEnemiesCommand.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/Commands/AllPlayersCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.Server/Commands/AllPlayersCommand.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/Commands/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.Server/Commands/ICommand.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/Commands/InputCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.Server/Commands/InputCommand.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/Commands/KickPlayerCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.Server/Commands/KickPlayerCommand.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/Commands/LoginCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.Server/Commands/LoginCommand.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/Commands/PlayerPositionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.Server/Commands/PlayerPositionCommand.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.Server/Data.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/Forms/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.Server/Forms/MainForm.Designer.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/Forms/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.Server/Forms/MainForm.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/Forms/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.Server/Forms/MainForm.resx -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/GameRoom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.Server/GameRoom.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/LetsCreateNetworkGame.Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.Server/LetsCreateNetworkGame.Server.csproj -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/Managers/ManagerCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.Server/Managers/ManagerCamera.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/Managers/ManagerCollision.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.Server/Managers/ManagerCollision.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/Managers/ManagerLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.Server/Managers/ManagerLogger.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/MyEventArgs/LogMessageEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.Server/MyEventArgs/LogMessageEventArgs.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/MyEventArgs/NewPlayerEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.Server/MyEventArgs/NewPlayerEventArgs.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/PacketFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.Server/PacketFactory.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/PlayerAndConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.Server/PlayerAndConnection.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.Server/Program.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.Server/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.Server/Server.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/Util/LogMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.Server/Util/LogMessage.cs -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/bin/Debug/LetsCreateNetworkGame.Server.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.Server/bin/Debug/LetsCreateNetworkGame.Server.exe -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/bin/Debug/LetsCreateNetworkGame.Server.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.Server/bin/Debug/LetsCreateNetworkGame.Server.exe.config -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/bin/Debug/LetsCreateNetworkGame.Server.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.Server/bin/Debug/LetsCreateNetworkGame.Server.pdb -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/bin/Debug/LetsCreateNetworkGame.Server.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.Server/bin/Debug/LetsCreateNetworkGame.Server.vshost.exe -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/bin/Debug/LetsCreateNetworkGame.Server.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.Server/bin/Debug/LetsCreateNetworkGame.Server.vshost.exe.config -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.Server/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.Server/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/obj/Debug/LetsCreateNetworkGame.Server.Forms.MainForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.Server/obj/Debug/LetsCreateNetworkGame.Server.Forms.MainForm.resources -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/obj/Debug/LetsCreateNetworkGame.Server.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.Server/obj/Debug/LetsCreateNetworkGame.Server.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/obj/Debug/LetsCreateNetworkGame.Server.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.Server/obj/Debug/LetsCreateNetworkGame.Server.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/obj/Debug/LetsCreateNetworkGame.Server.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.Server/obj/Debug/LetsCreateNetworkGame.Server.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/obj/Debug/LetsCreateNetworkGame.Server.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.Server/obj/Debug/LetsCreateNetworkGame.Server.exe -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/obj/Debug/LetsCreateNetworkGame.Server.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.Server/obj/Debug/LetsCreateNetworkGame.Server.pdb -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LetsCreateNetworkGame.Server/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.Server/packages.config -------------------------------------------------------------------------------- /LetsCreateNetworkGame.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.sln -------------------------------------------------------------------------------- /LetsCreateNetworkGame.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilleBo/SpeedCodingNetworkGame/HEAD/LetsCreateNetworkGame.v12.suo --------------------------------------------------------------------------------