mirror of
https://github.com/vsariola/sointu.git
synced 2025-05-28 03:10:24 -04:00
13 lines
149 B
Go
13 lines
149 B
Go
//go:build plugin
|
|
|
|
package gioui
|
|
|
|
const CAN_QUIT = false
|
|
|
|
func (t *Tracker) Quit(forced bool) bool {
|
|
if forced {
|
|
t.sendQuit()
|
|
}
|
|
return forced
|
|
}
|