c6a9cd69c2
* NEW: Add examples again. I hope correctly this time. git-svn-id: svn://localhost/gambas/trunk@6726 867c0c6c-44f3-4631-809d-bfa615b0a4ec
9 lines
409 B
Text
9 lines
409 B
Text
' Gambas class file
|
|
|
|
' each row is stored as a number between 0-1023 (inc)
|
|
' each column numbered in 2^ and the row is the sum of the active columns
|
|
' leftmost column is 512, rightmost is 1
|
|
Public Name As String ' Board desidn name
|
|
Public Row As New Byte[] ' Board layout
|
|
Public Placed As New Byte[] ' The cells with balls on them
|
|
Public Finish As Byte ' The cell that the last ball must be on
|