home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Acao / midnightstrike1.swf / scripts / __Packages / com / neodelight / v2D / PlatformObject.as < prev    next >
Encoding:
Text File  |  2007-04-02  |  257 b   |  10 lines

  1. class com.neodelight.v2D.PlatformObject extends com.neodelight.v2D.V2DObject
  2. {
  3.    var collisionStyle;
  4.    function PlatformObject(mc, flags)
  5.    {
  6.       super(mc,flags | com.neodelight.v2D.V2DObject.FlagFixed);
  7.       this.collisionStyle = 30;
  8.    }
  9. }
  10.