mirror of
https://github.com/vsariola/sointu.git
synced 2025-06-04 01:28:45 -04:00
The RPC and sync library mechanisms were removed for now; they never really worked and contained several obvious bugs. Need to consider if syncs are useful at all during the compose time, or just used during intro.
11 lines
138 B
Go
11 lines
138 B
Go
//go:build plugin
|
|
|
|
package gioui
|
|
|
|
const CAN_QUIT = false
|
|
|
|
func (t *Tracker) Quit(forced bool) bool {
|
|
t.quitted = forced
|
|
return forced
|
|
}
|