Add stub for SurfaceBox

This commit is contained in:
Sasha Koshka 2024-05-26 14:55:33 -04:00
parent 8f47da654c
commit dd201f1b5f
1 changed files with 8 additions and 0 deletions

8
surfacebox.go Normal file
View File

@ -0,0 +1,8 @@
package x
import "errors"
import "git.tebibyte.media/tomo/tomo"
func (backend *Backend) NewSurfaceBox() (tomo.SurfaceBox, error) {
return nil, errors.New("SurfaceBox not implemented yet")
}