You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
396 B
18 lines
396 B
1 week ago
|
package config
|
||
|
|
||
|
const (
|
||
|
// Size constants
|
||
|
BlockSize = 30
|
||
|
BoardWidth = 10
|
||
|
BoardHeight = 20
|
||
|
ScreenWidth = BlockSize * (BoardWidth + 6) // Extra space for next piece preview
|
||
|
ScreenHeight = BlockSize * BoardHeight
|
||
|
PreviewX = BlockSize * (BoardWidth + 1)
|
||
|
PreviewY = BlockSize * 2
|
||
|
|
||
|
// Game constants
|
||
|
InitialDropInterval = 60
|
||
|
MinDropInterval = 5
|
||
|
EmptyBlock = 0
|
||
|
)
|