10 lines
237 B
Go
10 lines
237 B
Go
|
package balance
|
||
|
|
||
|
// Font filenames used as part of game configuration.
|
||
|
const (
|
||
|
// Main UI fonts (sans-serif and monospace)
|
||
|
SansSerifFont = "DejaVuSans.ttf"
|
||
|
MonospaceFont = "DejaVuSansMono.ttf"
|
||
|
SansBoldFont = "DejaVuSans-Bold.ttf"
|
||
|
)
|