From 841239c4490b5d062a4e49ee770cc7d049b30e57 Mon Sep 17 00:00:00 2001 From: LP Date: Thu, 19 Aug 2021 15:57:13 +0100 Subject: [PATCH] Added notion of IHasStats --- src/OpenRpg.Core/Stats/IHasStats.cs | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/OpenRpg.Core/Stats/IHasStats.cs diff --git a/src/OpenRpg.Core/Stats/IHasStats.cs b/src/OpenRpg.Core/Stats/IHasStats.cs new file mode 100644 index 0000000..47ccdc9 --- /dev/null +++ b/src/OpenRpg.Core/Stats/IHasStats.cs @@ -0,0 +1,7 @@ +namespace OpenRpg.Core.Stats +{ + public interface IHasStats + { + IStatsVariables Stats { get; } + } +} \ No newline at end of file