JulienKluge/SMAeroControler

Change from old declarators to new declarators

Closed this issue · 0 comments

Change old variable declaration like:

new Float:x = 5.0;
new y = 7;

to

float x = 5.0;
int y = 7;

It goes:
Float = float
bool - No Change
_ = no tag = int
String = char