Added EParserEntryType
This commit is contained in:
parent
c2940ad404
commit
9f1f8a4088
2 changed files with 9 additions and 1 deletions
8
src/Parser/EParserEntryType.bf
Normal file
8
src/Parser/EParserEntryType.bf
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
namespace Bofa.Parser;
|
||||||
|
|
||||||
|
enum EParserEntryType
|
||||||
|
{
|
||||||
|
Bofa,
|
||||||
|
Text,
|
||||||
|
Empty
|
||||||
|
}
|
|
@ -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;
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue