Update to version 1.0.0 #3
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
|
||||
{
|
||||
public bool IsBofaOrText = true; //True == Bofa, False == Text
|
||||
public EParserEntryType Type;
|
||||
public ParserEntryUnion Data;
|
||||
}
|
Loading…
Add table
Reference in a new issue