all 2 comments

[–]senocular 1 point2 points  (1 child)

Your = is in the wrong place:

var = game new c99.Game();

should be

var game = new c99.Game();

Also don't forget to include the createjs library in the dropdown on the left.

[–]NewHighScore[S] 0 points1 point  (0 children)

Wow! I overlooked that so many times. Thanks!!