diff --git a/src/Client/RobotController/Map.cs b/src/Client/RobotController/Map.cs new file mode 100644 index 0000000..2874ffc --- /dev/null +++ b/src/Client/RobotController/Map.cs @@ -0,0 +1,15 @@ +namespace Mapper +{ + public class Map + { + private Coordinate bottomLeft; + private Coordinate topRight; + + public Map(Coordinate bottomLeft, Coordinate topRight) + { + this.bottomLeft = bottomLeft; + this.topRight = topRight; + } + + } +} diff --git a/src/Mapper/Class1.cs b/src/Mapper/Class1.cs deleted file mode 100644 index 93c15a8..0000000 --- a/src/Mapper/Class1.cs +++ /dev/null @@ -1,7 +0,0 @@ -namespace Mapper -{ - public class Class1 - { - - } -} diff --git a/src/Mapper/Mapper.csproj b/src/Mapper/Mapper.csproj deleted file mode 100644 index fa71b7a..0000000 --- a/src/Mapper/Mapper.csproj +++ /dev/null @@ -1,9 +0,0 @@ - - - - net8.0 - enable - enable - - - diff --git a/src/Mapper/Mapper.sln b/src/Mapper/Mapper.sln deleted file mode 100644 index 117d856..0000000 --- a/src/Mapper/Mapper.sln +++ /dev/null @@ -1,25 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.10.34916.146 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Mapper", "Mapper.csproj", "{B8D93E63-0FEA-428A-A34D-66A4B37C5B8E}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {B8D93E63-0FEA-428A-A34D-66A4B37C5B8E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {B8D93E63-0FEA-428A-A34D-66A4B37C5B8E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {B8D93E63-0FEA-428A-A34D-66A4B37C5B8E}.Release|Any CPU.ActiveCfg = Release|Any CPU - {B8D93E63-0FEA-428A-A34D-66A4B37C5B8E}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {90126F06-02FF-401E-BCC7-6600CC9B3F59} - EndGlobalSection -EndGlobal