backend/internal/system/surfacebox.go

10 lines
201 B
Go
Raw Normal View History

2024-06-01 14:39:14 -06:00
package system
2024-06-02 11:23:03 -06:00
import "errors"
2024-06-01 14:39:14 -06:00
import "git.tebibyte.media/tomo/tomo"
func (this *System) NewSurfaceBox () (tomo.SurfaceBox, error) {
2024-06-02 11:23:03 -06:00
// TODO
return nil, errors.New("system: not implemented yet")
2024-06-01 14:39:14 -06:00
}