sannybuilder/dev

Allow multiple variable allocation inline with opcode and function calls

Opened this issue · 0 comments

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