Notification from the Android framework, native_activity has been resumed

Property definitions

android :: native_app_glue $ App :: resume
	# Notification from the Android framework, `native_activity` has been resumed
	fun resume do end
lib/android/native_app_glue.nit:206,2--207,18

android :: game $ App :: resume
	redef fun resume
	do
		paused = false
		on_resume
		super
	end
lib/android/game.nit:48,2--53,4

gamnit :: gamnit_android $ App :: resume
	redef fun resume
	do
		if print_lifecycle_events then print "+ resume"
		resumed = true
		set_active
		super
	end
lib/gamnit/gamnit_android.nit:86,2--92,4

gamnit :: cardboard $ App :: resume
	redef fun resume
	do
		super
		var tracker = head_tracker
		if tracker != null then tracker.start_tracking
	end
lib/gamnit/depth/cardboard.nit:102,2--107,4