Text

you can run this locally with the following command

go run github.com/dfirebaugh/tortuga/examples/font

package main

import "github.com/dfirebaugh/tortuga"

var console tortuga.Console

type cart struct{}

func (c cart) Update() {}
func (c cart) Render() {
	console.PrintAt("hello, world!", 10, 100, 4)
}

func main() {
	console = tortuga.New()
	console.SetTitle("font example")
	console.SetScaleFactor(3)
	console.Run(cart{})
}