this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add map() with no args to wren api class (#2687)

authored by

Matt Zykan and committed by
GitHub
ac30827e 0e34eaaa

+2
+2
src/api/wren.c
··· 66 66 foreign static spr(id, x, y, alpha_color, scale, flip)\n\ 67 67 foreign static spr(id, x, y, alpha_color, scale, flip, rotate)\n\ 68 68 foreign static spr(id, x, y, alpha_color, scale, flip, rotate, cell_width, cell_height)\n\ 69 + foreign static map()\n\ 69 70 foreign static map(cell_x, cell_y)\n\ 70 71 foreign static map(cell_x, cell_y, cell_w, cell_h)\n\ 71 72 foreign static map(cell_x, cell_y, cell_w, cell_h, x, y)\n\ ··· 1517 1518 if (strcmp(signature, "static TIC.spr(_,_,_,_,_,_,_)" ) == 0) return wren_spr; 1518 1519 if (strcmp(signature, "static TIC.spr(_,_,_,_,_,_,_,_,_)" ) == 0) return wren_spr; 1519 1520 1521 + if (strcmp(signature, "static TIC.map()" ) == 0) return wren_map; 1520 1522 if (strcmp(signature, "static TIC.map(_,_)" ) == 0) return wren_map; 1521 1523 if (strcmp(signature, "static TIC.map(_,_,_,_)" ) == 0) return wren_map; 1522 1524 if (strcmp(signature, "static TIC.map(_,_,_,_,_,_)" ) == 0) return wren_map;