native_type_test.fbs style corrected

This commit is contained in:
Alexey Geraskin
2019-07-19 13:33:40 +03:00
parent 149fb0b890
commit 16c45e28b4

View File

@@ -3,15 +3,13 @@ native_include "vector3d_pack.h";
namespace Geometry; namespace Geometry;
struct Vector3D (native_type:"Native::Vector3D") struct Vector3D (native_type:"Native::Vector3D") {
{
x:double; x:double;
y:double; y:double;
z:double; z:double;
} }
table ApplicationData table ApplicationData {
{
vectors:[Vector3D]; vectors:[Vector3D];
} }