Notification from the native_app glue framework, a new ANativeWindow is ready

When called, NativeAppGlue::window returns a poiter to the new window surface.

Property definitions

android :: native_app_glue $ App :: init_window
	# Notification from the native_app glue framework, a new ANativeWindow is ready
	#
	# When called, `NativeAppGlue::window` returns a poiter to the new window surface.
	fun init_window do end
lib/android/native_app_glue.nit:176,2--179,23

android :: game $ App :: init_window
	redef fun init_window
	do
		super
		on_create
		on_restore_state
	end
lib/android/game.nit:25,2--30,4

android :: input_events $ App :: init_window
	redef fun init_window
	do
		set_as_input_handler native_app_glue
		super
	end
lib/android/input_events.nit:259,2--263,4

gamnit :: gamnit_android $ App :: init_window
	redef fun init_window
	do
		if print_lifecycle_events then print "+ init_window"
		window_created = true
		set_active
		super
	end
lib/gamnit/gamnit_android.nit:70,2--76,4