1 /**
2 The ApplicationManager is used to manage the application itself.
3 @author <a href="mailto:matthewcasperson@gmail.com">Matthew Casperson</a>
4 @class
5 */
6 function ApplicationManager()
7 {
8 /**
9 Initialises this object
10 @return A reference to the initialised object
11 */
12 this.startupApplicationManager = function()
13 {
14 this.bounce = new Bounce().startupBounce(g_image);
15 return this;
16 }
17 }
Top