https://github.com/sezna/gamestuff
For web apps
https://github.com/sezna/gamestuff
Last synced: about 1 month ago
JSON representation
For web apps
- Host: GitHub
- URL: https://github.com/sezna/gamestuff
- Owner: sezna
- Created: 2017-03-07T17:29:17.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-08T15:00:37.000Z (over 8 years ago)
- Last Synced: 2025-07-06T07:08:23.706Z (3 months ago)
- Language: XSLT
- Size: 638 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TODO
* make enemy difficulty slowly increase -- done but not smartly
* make lasers draw in background, shoot edge of enemies instead of center
* balance game so it is hard# quick git tutorial:
# To get other people's changes:
git pull // this may fail if you have local changes that are not pushed. If this happens, copy your repository to a backup and then do git reset --hard; git pull# To save changes:
git add [filenames] // do this to the files you have modified.
git commit -m "[message]" // do this to give a message of what you changed in the files
git push origin master // do this to put your changes on github from your computer# Useful tools:
git diff [filename] // Shows differences between your file and the committed one
git status // shows files that have changed on your local copy
git blame [filename] // shows who edited a line last