sannybuilder / dev

Sanny Builder Bug Tracker and Roadmap development
https://sannybuilder.com
44 stars 0 forks source link

Allow multiple variable allocation inline with opcode and function calls #327

Open MiranDMC opened 1 month ago

MiranDMC commented 1 month ago

Currently it is possible: int health = GetHealth() but following code will produce error: float x, y, z = GetPos()

It forces user to write:

float x, y, z
x, y, z = get_char_coordinates $scplayer