Module SHAPES-PIXI

include { ... };
type t =
| Poly
| Rect
| Circ
| Elip
| Rrec
;

Constants that identify shapes, mainly to prevent instanceof calls

include { ... };
let tToJs: t => int;
let tFromJs: int => option(t);
let poly: int;

polygon

let rect: int;

rectangle

let circle: int;

circle

let elip: int;

elip

let rrec: int;

rounded rectangle