sannybuilder / dev

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

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

Open MiranDMC opened 6 months ago

MiranDMC commented 6 months 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