doodle/pkg/editor_scene_debug.go

12 lines
307 B
Go

package doodle
import "git.kirsle.net/SketchyMaze/doodle/pkg/uix"
// TODO: build flags to not include this in production builds.
// This adds accessors for private variables from the dev console.
// GetDrawing returns the uix.Canvas
func (w *EditorScene) GetDrawing() *uix.Canvas {
return w.UI.Canvas
}