home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Diversos / Jumper.swf / scripts / com / kongregate / as3 / client / IAPIBootstrap.as next >
Encoding:
Text File  |  2008-09-05  |  342 b   |  17 lines

  1. package com.kongregate.as3.client
  2. {
  3.    import flash.display.Stage;
  4.    import flash.events.Event;
  5.    
  6.    public interface IAPIBootstrap
  7.    {
  8.        
  9.       
  10.       function init(param1:Event = null, param2:Stage = null) : void;
  11.       
  12.       function hideLog() : void;
  13.       
  14.       function showLog(param1:int = 0) : void;
  15.    }
  16. }
  17.