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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2009-10-26
|
425 b
|
27 lines
package com.livebrush.utils
{
public class Controller
{
public var view:View;
public function Controller(view:View)
{
super();
this.view = view;
}
public function die() : void
{
}
protected function updateModel() : void
{
}
protected function init() : void
{
}
}
}