KingofSnake
Programmer
I have a type that looks like this:<br><br>TYPE playertype<br> cash AS INTEGER<br> hp AS INTEGER<br> etc as INTEGER<br>END TYPE<br><br>DIM player AS playertype<br><br>I would like to pass these values (like cash.player, hp.player) between subs. Currently I have a COMMON SHARED statement, and I have to list every value one by one. Isn't there something I can put in the COMMON SHARED statement that will make as of these be able to pass thru subs? Or is there something else I have to do (I don't want to declare something in each sub argument thingy.)