i am attempting to make a video game. I need to know how to declare a global variable. could someone post code that will let me make a global variable.
thanks...
thanks...
public variable1 as string public variable2 as string ... your code ... variable1 = "hello" variable2 = variable1 + "there" ... if variable1 = "hello" then end if
Comment