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