Help:VE220

From TrainzOnline
(Difference between revisions)
Jump to: navigation, search
(Created page with "This could mean the declared functions return type is different from the actual function. void GetSpeed(bool dir); int GetSpeed(bool dir) { } The declared function is ...")

Revision as of 09:53, 24 April 2023

This could mean the declared functions return type is different from the actual function.

void GetSpeed(bool dir);

int GetSpeed(bool dir) {

}

The declared function is void, but the actual function is int;

Personal tools