Increase stars.

This commit is contained in:
Thomas Gideon 2017-08-08 12:51:42 -04:00
parent 0461547b8f
commit c8364fe4b8
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ impl Game {
pub fn new(w: &mut PistonWindow) -> Game {
let mut scene = Scene::new();
let mut stars: Vec<Star> = vec![];
for _ in 1..5 {
for _ in 1..7 {
stars.push(Star::new(w, &mut scene));
}
let player = Hero::new(w, &mut scene);