mirror of
https://github.com/Wessel/Roommapper.git
synced 2026-07-15 20:44:00 +02:00
Move map to robotcontroller
This commit is contained in:
15
src/Client/RobotController/Map.cs
Normal file
15
src/Client/RobotController/Map.cs
Normal 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;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
namespace Mapper
|
||||
{
|
||||
public class Class1
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user