Any idea how to make a function that returns a tuple, rather than just a single value like:
GetXY(Coords:coord_class):(int,int)={ return (Coords.X,Coords.Y)}
Got it
5 Likes
Any idea how to make a function that returns a tuple, rather than just a single value like:
GetXY(Coords:coord_class):(int,int)={ return (Coords.X,Coords.Y)}
Got it