Last active
August 29, 2015 14:27
-
-
Save clamytoe/51343bfafc7eb2580acd to your computer and use it in GitHub Desktop.
HKUSTx: COMP107x Introduction to Mobile Application Development using Android
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"cells": [ | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"# Assignment: Shooting Game with Scores\n", | |
"---\n", | |
"\n", | |
"In this assignment, you will be extending the Shooting Game exercise that you have just completed by keeping track of the score as you shoot down the Android guys. The application should display the score on the top left corner of the screen, as shown in the video below.\n", | |
"\n", | |
"We have provided you with a pre-configured project that includes a partially completed **Score** class that you can use in the implementation of the assignment. The modification to this project involves adding in appropriate code in **DrawView.java** and **Score.java** at the locations specified with the \"*//TODO*\" comments. To get you started, please download the [ShootingGameScore.zip](http://w02.hkvu.hk/edX/COMP107x/w3/ShootingGameScore.zip) file, unzip it and import the project into Android Studio.\n", | |
"\n", | |
"## Textual Instructions\n", | |
"---\n", | |
"The project is configured with automated test code to test your application. Please carry out the automated test using the same steps given in **Assignment: Time Greet Friend**." | |
] | |
} | |
], | |
"metadata": { | |
"kernelspec": { | |
"display_name": "Python 2", | |
"language": "python", | |
"name": "python2" | |
}, | |
"language_info": { | |
"codemirror_mode": { | |
"name": "ipython", | |
"version": 2 | |
}, | |
"file_extension": ".py", | |
"mimetype": "text/x-python", | |
"name": "python", | |
"nbconvert_exporter": "python", | |
"pygments_lexer": "ipython2", | |
"version": "2.7.6" | |
} | |
}, | |
"nbformat": 4, | |
"nbformat_minor": 0 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment