Notification from the native_app glue framework, the existing window needs to be terminated

Upon receiving this command, native_app_glue.window still contains the existing window.

Property definitions

android :: native_app_glue $ App :: term_window
	# Notification from the native_app glue framework, the existing window needs to be terminated
	#
	# Upon receiving this command, `native_app_glue.window` still contains the existing window.
	fun term_window do end
lib/android/native_app_glue.nit:181,2--184,23

android :: game $ App :: term_window
	redef fun term_window
	do
		super
		on_stop
	end
lib/android/game.nit:32,2--36,4

gamnit :: gamnit_android $ App :: term_window
	redef fun term_window
	do
		if print_lifecycle_events then print "+ term_window"
		window_created = false
		set_inactive
		super
	end
lib/gamnit/gamnit_android.nit:78,2--84,4