Skip to content

Commit

Permalink
Adding default entity state and stat variables types
Browse files Browse the repository at this point in the history
  • Loading branch information
grofit committed Sep 10, 2023
1 parent 77c11e1 commit 6c60066
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/OpenRpg.Core/Types/EntityStateVariableTypes.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
namespace OpenRpg.Core.Types
{
public interface EntityStateVariableTypes
{
public static readonly int Unknown = 0;
}
}
7 changes: 7 additions & 0 deletions src/OpenRpg.Core/Types/StatsVariableTypes.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
namespace OpenRpg.Core.Types
{
public interface StatsVariableTypes
{
public static readonly int Unknown = 0;
}
}

0 comments on commit 6c60066

Please sign in to comment.