Hey, Simple stupid question, Is it possible to create structs in AngelScript? I don't mean exposed structs. Something like :
struct TestDataStruct
{
int someInt;
float someFloat;
uint64 someUInt64;
string someString;
};
If I use class
instead of struct
it works, But with struct I get following error :
Error : Expected one of: get, set, }
Error : Instead found reserved keyword 'int'
Error : Unexpected token '}'
I'm trying to implement a JSON serializer.