home *** CD-ROM | disk | FTP | other *** search
- class CBoom extends MovieClip
- {
- var pos;
- function CBoom()
- {
- super();
- }
- function init(pos_)
- {
- this.pos = pos_;
- }
- function process(dTime)
- {
- }
- function screenSynchronize(objTransform)
- {
- var _loc2_ = {x:0,y:0,k:0};
- objTransform.getScreenXY(this.pos.x,this.pos.y,this.pos.z,_loc2_);
- this._x = _loc2_.x;
- this._y = _loc2_.y;
- }
- function canShot()
- {
- return false;
- }
- }
-