home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
404 Jogos
/
CLJG.iso
/
Esportes
/
CrossingCup.swf
/
scripts
/
__Packages
/
com
/
bourre
/
events
/
BasicEvent.as
next >
Wrap
Text File
|
2007-12-11
|
524b
|
29 lines
class com.bourre.events.BasicEvent implements com.bourre.events.IEvent
{
function BasicEvent(e, oT)
{
this._e = e;
this._oT = oT;
}
function getType()
{
return this._e;
}
function setType(e)
{
this._e = e;
}
function getTarget()
{
return this._oT;
}
function setTarget(oT)
{
this._oT = oT;
}
function toString()
{
return com.bourre.log.PixlibStringifier.stringify(this) + " : " + this.getType();
}
}