system.go 315 B

12345678910111213
  1. // SPDX-License-Identifier: Unlicense OR MIT
  2. package app
  3. // DestroyEvent is the last event sent through
  4. // a window event channel.
  5. type DestroyEvent struct {
  6. // Err is nil for normal window closures. If a
  7. // window is prematurely closed, Err is the cause.
  8. Err error
  9. }
  10. func (DestroyEvent) ImplementsEvent() {}