26 lines
471 B
Go
26 lines
471 B
Go
//go:build !gopher_badge && !pybadge
|
|
// +build !gopher_badge,!pybadge
|
|
|
|
package main
|
|
|
|
// Default definitions for IDE support and testing
|
|
// This file is not compiled when using a specific target
|
|
|
|
const (
|
|
displayWidth = 320
|
|
displayHeight = 240
|
|
)
|
|
|
|
const (
|
|
CornerRadius = 10
|
|
TopBandHeight = 54
|
|
BottomBandHeight = 20
|
|
HelloY = 34
|
|
MyNameIsY = 54
|
|
GophersY = 208
|
|
GophersX = 84
|
|
|
|
menuItemSpace = 20
|
|
menuCircleR = 6
|
|
|
|
)
|