From 9f1f8a408818621bd82f75fd1ed6abed28b75887 Mon Sep 17 00:00:00 2001 From: Booklordofthedings Date: Sat, 3 Aug 2024 16:33:12 +0200 Subject: [PATCH] Added EParserEntryType --- src/Parser/EParserEntryType.bf | 8 ++++++++ src/Parser/ParserEntry.bf | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 src/Parser/EParserEntryType.bf diff --git a/src/Parser/EParserEntryType.bf b/src/Parser/EParserEntryType.bf new file mode 100644 index 0000000..f3acf82 --- /dev/null +++ b/src/Parser/EParserEntryType.bf @@ -0,0 +1,8 @@ +namespace Bofa.Parser; + +enum EParserEntryType +{ + Bofa, + Text, + Empty +} \ No newline at end of file diff --git a/src/Parser/ParserEntry.bf b/src/Parser/ParserEntry.bf index 9899a6f..b7a21bd 100644 --- a/src/Parser/ParserEntry.bf +++ b/src/Parser/ParserEntry.bf @@ -4,6 +4,6 @@ using System; struct ParserEntry { - public bool IsBofaOrText = true; //True == Bofa, False == Text + public EParserEntryType Type; public ParserEntryUnion Data; } \ No newline at end of file