From 0abc2a4f580e868052f4fd61942530ecb036eb87 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:59 +0100 Subject: [PATCH] feat: add position --- Core/NosSmooth.Game/Data/Position.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Core/NosSmooth.Game/Data/Position.cs diff --git a/Core/NosSmooth.Game/Data/Position.cs b/Core/NosSmooth.Game/Data/Position.cs new file mode 100644 index 0000000..ddc9d98 --- /dev/null +++ b/Core/NosSmooth.Game/Data/Position.cs @@ -0,0 +1,14 @@ +// +// Position.cs +// +// Copyright (c) František Boháček. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +namespace NosSmooth.Game.Data; + +/// +/// Represents nostale positition on map. +/// +/// The x coordinate. +/// The y coordinate. +public record Position(int X, int Y); \ No newline at end of file -- 2.49.0