Noah Petherbridge
2b42a072a0
* All private Doodle source code into the pkg/ folder. * Potentially public code into the lib/ folder. * Centralize the logger into a subpackage.
12 lines
300 B
Go
12 lines
300 B
Go
package doodle
|
|
|
|
import "git.kirsle.net/apps/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
|
|
}
|