Rewrite #2

Merged
Booklordofthedings merged 22 commits from rewrite into dev 2024-08-26 13:32:44 +02:00
2 changed files with 9 additions and 1 deletions
Showing only changes of commit 9f1f8a4088 - Show all commits

View file

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

View file

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