home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
404 Jogos
/
CLJG.iso
/
Esportes
/
CrossingCup.swf
/
scripts
/
__Packages
/
com
/
bourre
/
events
/
DynBasicEvent.as
< prev
next >
Wrap
Text File
|
2007-12-11
|
594b
|
28 lines
class com.bourre.events.DynBasicEvent extends com.bourre.events.BasicEvent
{
function DynBasicEvent(s, oT)
{
super(new com.bourre.events.EventType(s),oT);
}
function get type()
{
return this._e.toString();
}
function set type(s)
{
this._e = new com.bourre.events.EventType(s);
}
function get target()
{
return this._oT;
}
function set target(oT)
{
this._oT = oT;
}
function toString()
{
return com.bourre.log.PixlibStringifier.stringify(this) + " : " + this.__get__type();
}
}