home *** CD-ROM | disk | FTP | other *** search
/ PCGUIA 2010 Software/Programs / PCGuia_programas.iso / Software / Utils / Livebrush / Install-LivebrushLite.air / livebrush.swf / scripts / com / livebrush / tools / HelpTool.as < prev    next >
Encoding:
Text File  |  2009-10-26  |  386 b   |  21 lines

  1. package com.livebrush.tools
  2. {
  3.    public class HelpTool extends Tool
  4.    {
  5.       public static const NAME:String = "helpTool";
  6.       
  7.       public static const KEY:String = "h";
  8.       
  9.       public function HelpTool(toolMan:ToolManager)
  10.       {
  11.          super(toolMan);
  12.          this.init();
  13.       }
  14.       
  15.       private function init() : void
  16.       {
  17.       }
  18.    }
  19. }
  20.  
  21.