Update to version 1.0.0 #3

Merged
Booklordofthedings merged 23 commits from dev into main 2024-08-26 13:33:38 +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;
}