phsycis.box2d: Cosmetics.

This commit is contained in:
Rod Kay
2024-02-03 21:13:17 +11:00
parent 180625eb89
commit ae8c2b6f96

View File

@@ -10,31 +10,31 @@ use Interfaces.C;
package box2d_c is package box2d_c is
-- Shape -- Shape
-- --
subtype Shape is swig.opaque_structure; subtype Shape is swig.opaque_structure;
type Shape_array is array (interfaces.C.Size_t range <>) of aliased box2d_c.Shape; type Shape_array is array (interfaces.C.Size_t range <>) of aliased box2d_c.Shape;
-- Object -- Object
-- --
subtype Object is swig.opaque_structure; subtype Object is swig.opaque_structure;
type Object_array is array (interfaces.C.Size_t range <>) of aliased box2d_c.Object; type Object_array is array (interfaces.C.Size_t range <>) of aliased box2d_c.Object;
-- Joint -- Joint
-- --
subtype Joint is swig.opaque_structure; subtype Joint is swig.opaque_structure;
type Joint_array is array (interfaces.C.Size_t range <>) of aliased box2d_c.Joint; type Joint_array is array (interfaces.C.Size_t range <>) of aliased box2d_c.Joint;
-- Space -- Space
-- --
subtype Space is swig.opaque_structure; subtype Space is swig.opaque_structure;
type Space_array is array (interfaces.C.Size_t range <>) of aliased box2d_c.Space; type Space_array is array (interfaces.C.Size_t range <>) of aliased box2d_c.Space;
-- b2Joint -- b2Joint
-- --
subtype b2Joint is swig.opaque_structure; subtype b2Joint is swig.opaque_structure;
type b2Joint_array is array (interfaces.C.Size_t range <>) of aliased box2d_c.b2Joint; type b2Joint_array is array (interfaces.C.Size_t range <>) of aliased box2d_c.b2Joint;