

var DemoApplication = Class.create( Application, {

	
	initialize : function(){
	
		this.model = new DemoModel();
		this.view = new DemoView();
		this.controller = new DemoController();
	},
	
	start : function(){
		
		
	},
	
	
	stop : function(){
		
		
		
	}
	
	
})


