github.com/utopiagio/gio@v0.0.8/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() {}