diff --git a/src/BofaParser.bf b/src/BofaParser.bf new file mode 100644 index 0000000..607f183 --- /dev/null +++ b/src/BofaParser.bf @@ -0,0 +1,5 @@ +namespace Bofa; + +class BofaParser +{ +} \ No newline at end of file diff --git a/src/Parser/ParserEntry.bf b/src/Parser/ParserEntry.bf new file mode 100644 index 0000000..c66c151 --- /dev/null +++ b/src/Parser/ParserEntry.bf @@ -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; + } +} \ No newline at end of file