package o1.flappy // This file defines constants that are used in o1.flappy to define the rules of FlappyBug. // Feel free to *add* constants in this file, if you wish. However, do not change the values of // the predefined constants below, as our automatic assessment depends on them. (If you do want // to experiment with changing the given values, change them back before submitting your work.) val ObstacleSpeed = 10 val FallingSpeed = 2 val BugRadius = 15 val ViewWidth = 1000 val ViewHeight = 400 val GroundDepth = 50 // You may define your own constants here.