gioui.org@v0.6.1-0.20240506124620-7a9ce51988ce/app/system.go (about)

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