]>
Commit | Line | Data |
---|---|---|
1 | package de.cwde.freeshisen; | |
2 | ||
3 | import android.os.Bundle; | |
4 | import android.view.View; | |
5 | import android.app.Activity; | |
6 | ||
7 | public class HighscoreActivity extends Activity { | |
8 | ||
9 | @Override | |
10 | protected void onCreate(Bundle savedInstanceState) { | |
11 | super.onCreate(savedInstanceState); | |
12 | setContentView(R.layout.highscore); | |
13 | } | |
14 | ||
15 | public void clearHiscore(View view) { | |
16 | // TODO | |
17 | } | |
18 | } |