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

  1. package com.kongregate.as3.client.services
  2. {
  3.    import flash.events.EventDispatcher;
  4.    
  5.    public class AbstractShadowService extends EventDispatcher
  6.    {
  7.        
  8.       
  9.       public function AbstractShadowService()
  10.       {
  11.          super();
  12.       }
  13.       
  14.       protected function alert(param1:String, param2:String, param3:* = "", param4:String = "") : void
  15.       {
  16.          trace("Kongregate API: " + param1 + "." + param2 + "(" + param3 + ") " + param4);
  17.       }
  18.    }
  19. }
  20.