summaryrefslogtreecommitdiff
path: root/source/CopernicusApp.mc
blob: 982f3974f0d05fdee1a00689b45d2ebe6cdbd42b (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
29
30
31
32
33
34
35
36
37
38
//
// Copernicus
//
// Copyright (C) 2019 cy384
// 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 CopernicusApp extends Application.AppBase
{
	function initialize()
	{
		AppBase.initialize();
	}

	function onStart(state)
	{
	}

	function onStop(state)
	{
	}

	function getInitialView()
	{
		return [new CopernicusView()];
	}

	function onSettingsChanged()
	{
		WatchUi.requestUpdate();
	}
}