summaryrefslogtreecommitdiff
path: root/source/CopernicusApp.mc
diff options
context:
space:
mode:
Diffstat (limited to 'source/CopernicusApp.mc')
-rw-r--r--source/CopernicusApp.mc38
1 files changed, 0 insertions, 38 deletions
diff --git a/source/CopernicusApp.mc b/source/CopernicusApp.mc
deleted file mode 100644
index 982f397..0000000
--- a/source/CopernicusApp.mc
+++ /dev/null
@@ -1,38 +0,0 @@
-//
-// 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();
- }
-}