10-08-2016, 02:38 PM
If they're non-existing objects, then why this is compiling and run without any problem?
Code:
extern void object::FindWayPoint()
{
object item = radar(WayPoint);
point place;
place.x = item.position.x;
place.y = item.position.y;
message("I found the Way Point in the x=" + place.x + ";y="+ place.y + " position in this world.", DisplayInfo);
}