Tells me 'Identifier SatelliteList not found.'. Am I going completely mad here, or is there something actually wrong with the code? I've got the latest syncmod.
I just know someone's going to point out something extremely obvious...
I've also got MaxGUI, not that it matters.
SuperStrict Graphics(640,480,0) While Not KeyHit(KEY_ESCAPE) Local s:TSatellite For s=EachIn SatelliteList s.Draw() Next Flip;Cls Wend Type TSatellite Global SatelliteList:TList=New TList Method Draw() End Method Function Create:TSatellite() Local s:TSatellite=New TSatallite SatelliteList.AddLast(s) Return s End Function End Type
I just know someone's going to point out something extremely obvious...
I've also got MaxGUI, not that it matters.