Update to version 1.0.0 #3
1 changed files with 19 additions and 0 deletions
19
src/BofaValue.bf
Normal file
19
src/BofaValue.bf
Normal file
|
@ -0,0 +1,19 @@
|
|||
namespace Bofa;
|
||||
|
||||
using System;
|
||||
using System.Collections;
|
||||
|
||||
[Union]
|
||||
struct BofaValue
|
||||
{
|
||||
StringView Line;
|
||||
StringView Text;
|
||||
float Number;
|
||||
double BigNumber;
|
||||
int32 Integer;
|
||||
int64 BigInteger;
|
||||
bool Boolean;
|
||||
String Custom;
|
||||
Bofa Object;
|
||||
Bofa Array;
|
||||
}
|
Loading…
Add table
Reference in a new issue