Rewrite #2

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

5
src/BofaParser.bf Normal file
View file

@ -0,0 +1,5 @@
namespace Bofa;
class BofaParser
{
}

16
src/Parser/ParserEntry.bf Normal file
View file

@ -0,0 +1,16 @@
namespace Bofa.Parser;
using System;
struct ParserEntry
{
public bool IsBofaOrText = true; //True == Bofa, False == Text
public EntryUnion Data;
[Union]
public struct EntryUnion
{
public Bofa Bofa;
public StringView Text;
}
}