From faa7c167db3a0b8b4f68ac3c6b97b8369eab7516 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franti=C5=A1ek=20Boh=C3=A1=C4=8Dek?= Date: Tue, 21 Dec 2021 22:44:08 +0100 Subject: [PATCH] feat: add maps types skeleton --- Core/NosSmooth.Game/Data/Maps/Map.cs | 12 ++++++++++++ Core/NosSmooth.Game/Data/Maps/Miniland.cs | 12 ++++++++++++ Core/NosSmooth.Game/Data/Maps/Portal.cs | 12 ++++++++++++ Core/NosSmooth.Game/Data/Maps/Timespace.cs | 9 +++++++++ 4 files changed, 45 insertions(+) create mode 100644 Core/NosSmooth.Game/Data/Maps/Map.cs create mode 100644 Core/NosSmooth.Game/Data/Maps/Miniland.cs create mode 100644 Core/NosSmooth.Game/Data/Maps/Portal.cs create mode 100644 Core/NosSmooth.Game/Data/Maps/Timespace.cs diff --git a/Core/NosSmooth.Game/Data/Maps/Map.cs b/Core/NosSmooth.Game/Data/Maps/Map.cs new file mode 100644 index 0000000..93a9234 --- /dev/null +++ b/Core/NosSmooth.Game/Data/Maps/Map.cs @@ -0,0 +1,12 @@ +// +// Map.cs +// +// Copyright (c) Christofel authors. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +namespace NosSmooth.Game.Maps; + +public class Map +{ + +} \ No newline at end of file diff --git a/Core/NosSmooth.Game/Data/Maps/Miniland.cs b/Core/NosSmooth.Game/Data/Maps/Miniland.cs new file mode 100644 index 0000000..c8dbce7 --- /dev/null +++ b/Core/NosSmooth.Game/Data/Maps/Miniland.cs @@ -0,0 +1,12 @@ +// +// Miniland.cs +// +// Copyright (c) Christofel authors. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +namespace NosSmooth.Game.Maps; + +public class Miniland +{ + +} \ No newline at end of file diff --git a/Core/NosSmooth.Game/Data/Maps/Portal.cs b/Core/NosSmooth.Game/Data/Maps/Portal.cs new file mode 100644 index 0000000..3217306 --- /dev/null +++ b/Core/NosSmooth.Game/Data/Maps/Portal.cs @@ -0,0 +1,12 @@ +// +// Portal.cs +// +// Copyright (c) Christofel authors. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +namespace NosSmooth.Game.Maps; + +public class Portal +{ + +} \ No newline at end of file diff --git a/Core/NosSmooth.Game/Data/Maps/Timespace.cs b/Core/NosSmooth.Game/Data/Maps/Timespace.cs new file mode 100644 index 0000000..4e8457a --- /dev/null +++ b/Core/NosSmooth.Game/Data/Maps/Timespace.cs @@ -0,0 +1,9 @@ +// +// Timespace.cs +// +// Copyright (c) Christofel authors. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +namespace NosSmooth.Game.Maps; + +public record Timespace(); \ No newline at end of file -- 2.49.0