X-Git-Url: http://nitlanguage.org diff --git a/lib/linux/linux.nit b/lib/linux/linux.nit index 8b90102..04a0c5d 100644 --- a/lib/linux/linux.nit +++ b/lib/linux/linux.nit @@ -18,3 +18,25 @@ module linux import app + +redef class App + redef fun setup + do + super + + on_create + on_restore_state + on_start + on_resume + end + + redef fun run + do + super + + on_pause + on_save_state + on_stop + on_destroy + end +end