15 lines
347 B
MonkeyC
15 lines
347 B
MonkeyC
import Toybox.Lang;
|
|
import Toybox.WatchUi;
|
|
|
|
class garmin_padelDelegate extends WatchUi.BehaviorDelegate {
|
|
|
|
function initialize() {
|
|
BehaviorDelegate.initialize();
|
|
}
|
|
|
|
function onMenu() as Boolean {
|
|
WatchUi.pushView(new Rez.Menus.MainMenu(), new garmin_padelMenuDelegate(), WatchUi.SLIDE_UP);
|
|
return true;
|
|
}
|
|
|
|
} |