Added EParserEntryType

This commit is contained in:
Booklordofthedings 2024-08-03 16:33:12 +02:00
parent c2940ad404
commit 9f1f8a4088
2 changed files with 9 additions and 1 deletions

View file

@ -0,0 +1,8 @@
namespace Bofa.Parser;
enum EParserEntryType
{
Bofa,
Text,
Empty
}

View file

@ -4,6 +4,6 @@ using System;
struct ParserEntry struct ParserEntry
{ {
public bool IsBofaOrText = true; //True == Bofa, False == Text public EParserEntryType Type;
public ParserEntryUnion Data; public ParserEntryUnion Data;
} }