bracket system

This commit is contained in:
h z
2024-07-29 17:24:31 +01:00
parent 5fbbbe83a1
commit bae0a52e3f
36 changed files with 258 additions and 36 deletions

View File

@@ -0,0 +1,14 @@
using Skeleton.DataStructure.Tree;
namespace Nocturnis.Hermeteus;
public interface IBracketChapter : IBracketRouter
{
IBracketStory Story { get; set; }
string State { get; set; }
bool Finished { get; set; }
string Chapter { get; set; }
IBracketTopic CurrentTopic { get; set; }
HashSet<IBracketTopic> Children { get; set; }
HashSet<ICondition> Conditions { get; set; }
}