home *** CD-ROM | disk | FTP | other *** search
/ PCGUIA 2010 Software/Programs / PCGuia_programas.iso / Software / Utils / Livebrush / Install-LivebrushLite.air / livebrush.swf / scripts / com / livebrush / utils / Controller.as < prev    next >
Encoding:
Text File  |  2009-10-26  |  425 b   |  27 lines

  1. package com.livebrush.utils
  2. {
  3.    public class Controller
  4.    {
  5.       public var view:View;
  6.       
  7.       public function Controller(view:View)
  8.       {
  9.          super();
  10.          this.view = view;
  11.       }
  12.       
  13.       public function die() : void
  14.       {
  15.       }
  16.       
  17.       protected function updateModel() : void
  18.       {
  19.       }
  20.       
  21.       protected function init() : void
  22.       {
  23.       }
  24.    }
  25. }
  26.  
  27.