blob: b33454031926ad81fdb0197b01afe9178cf64fc2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
// Mazarine
//
// Copyright (C) 2019 cy384, 2020 cos
// All rights reserved.
//
// This software may be modified and distributed under the terms
// of the BSD license. See the LICENSE file for details.
using Toybox.Application;
using Toybox.WatchUi;
class MazarineApp extends Application.AppBase {
function initialize() {
AppBase.initialize();
}
function onStart(_) { }
function onStop(_) { }
function getInitialView() {
return [new MazarineView()];
}
function onSettingsChanged() {
WatchUi.requestUpdate();
}
}
|