home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Aventura / Never_End.swf / scripts / groups / WindGroup.as < prev   
Encoding:
Text File  |  2008-09-23  |  410 b   |  21 lines

  1. package groups
  2. {
  3.    import game.Model;
  4.    
  5.    public class WindGroup extends Group
  6.    {
  7.        
  8.       
  9.       public function WindGroup(param1:String, param2:Boolean)
  10.       {
  11.          super(param1,param2);
  12.       }
  13.       
  14.       override public function removeAllItems() : void
  15.       {
  16.          super.removeAllItems();
  17.          Model.getInstance().currentRoom.removeWind(this);
  18.       }
  19.    }
  20. }
  21.