c6a9cd69c2
* NEW: Add examples again. I hope correctly this time. git-svn-id: svn://localhost/gambas/trunk@6726 867c0c6c-44f3-4631-809d-bfa615b0a4ec
11 lines
592 B
Text
11 lines
592 B
Text
' Gambas class file
|
|
|
|
Static Public boarddesign As New Object[] ' The game grid
|
|
Static Public POW2 As Integer[] ' Array for display algo
|
|
Static Public ball As Picture ' The ball graphic
|
|
Static Public selected As Boolean ' Is a ball selected?
|
|
Static Public clickedball As Byte ' Which ball, ignored if above is false
|
|
Static Public ballcount As Byte ' The number of balls in play
|
|
Static Public totalballs As Byte ' The number of balls at the start
|
|
Static Public gamemove As New Object[] ' Stores the moves made to allow for undoing
|
|
Static Public selectedlayout As Byte ' The active board layout
|