Move map to robotcontroller

This commit is contained in:
zwarenelle
2024-05-22 15:48:43 +02:00
parent 46a0594f79
commit 51af99f550
4 changed files with 15 additions and 41 deletions

View File

@@ -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;
}
}
}

View File

@@ -1,7 +0,0 @@
namespace Mapper
{
public class Class1
{
}
}

View File

@@ -1,9 +0,0 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

View File

@@ -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