From b58efc1eeec7ada4b703ca518cf530062916ea4b 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:48:22 +0100 Subject: [PATCH] feat: add character type skeleton --- Core/NosSmooth.Game/Data/Characters/Character.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Core/NosSmooth.Game/Data/Characters/Character.cs diff --git a/Core/NosSmooth.Game/Data/Characters/Character.cs b/Core/NosSmooth.Game/Data/Characters/Character.cs new file mode 100644 index 0000000..1004b9d --- /dev/null +++ b/Core/NosSmooth.Game/Data/Characters/Character.cs @@ -0,0 +1,12 @@ +// +// Character.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.Entities; + +public class Character : Player +{ + +} \ No newline at end of file -- 2.49.0