├── Spaceship.pde ├── Star.pde ├── .gitignore ├── AsteroidsGame.pde ├── styles.css ├── index.html ├── Floater.pde └── README.md /Spaceship.pde: -------------------------------------------------------------------------------- 1 | class Spaceship extends Floater 2 | { 3 | //your code here 4 | } 5 | -------------------------------------------------------------------------------- /Star.pde: -------------------------------------------------------------------------------- 1 | class Star //note that this class does NOT extend Floater 2 | { 3 | //your code here 4 | } 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Gitignore for APCS Lowell repositories 2 | 3 | # Ignore compiled processing class files 4 | build-tmp/ 5 | -------------------------------------------------------------------------------- /AsteroidsGame.pde: -------------------------------------------------------------------------------- 1 | //your variable declarations here 2 | public void setup() 3 | { 4 | //your code here 5 | } 6 | public void draw() 7 | { 8 | //your code here 9 | } 10 | 11 | -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- 1 | 2 | body { 3 | background-color: rgb(200,200,200); 4 | color: rgb(0,0,0); 5 | font-family: "Open Sans", sans-serif; 6 | text-align: center; 7 | } 8 | 9 | #content { 10 | display: block; 11 | margin-left: auto; 12 | margin-right: auto 13 | } 14 | 15 | header { 16 | 17 | } 18 | 19 | footer { 20 | font-style: italic; 21 | font-size: 90%; 22 | } 23 | 24 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 |