home *** CD-ROM | disk | FTP | other *** search
- class GameLevel
- {
- var backgrounds;
- var records;
- var startTime = 40;
- var fogAmount = 1;
- var outsideMaxSlope = 0;
- var outsideMinSlope = 0;
- var openTextColor = 26367;
- var containedTextColor = 6388617;
- var bonusTime = 100;
- var bonusPoints = 100000;
- function GameLevel()
- {
- this.backgrounds = [];
- this.records = [];
- }
- function addRecord(name, time)
- {
- this.records.push({name:name,time:time});
- }
- function addBackground(bg)
- {
- this.backgrounds.push(bg);
- }
- }
-