doodle/lib/events/debug.go
Noah Petherbridge 2b42a072a0 Code Layout Refactor
* All private Doodle source code into the pkg/ folder.
* Potentially public code into the lib/ folder.
* Centralize the logger into a subpackage.
2019-04-09 17:35:44 -07:00

8 lines
141 B
Go

package events
// Debug constants, toggle on or off for SUPER VERBOSE debugging.
var (
DebugMouseEvents = false
DebugClickEvents = true
)