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

  1. package com.kongregate.as3.client.services
  2. {
  3.    public class StatServiceShadow extends AbstractShadowService implements IStatServices
  4.    {
  5.        
  6.       
  7.       public function StatServiceShadow()
  8.       {
  9.          super();
  10.       }
  11.       
  12.       public function submitArray(param1:Array) : void
  13.       {
  14.          alert("IStatServices","submitArray",arguments);
  15.       }
  16.       
  17.       public function submit(param1:String, param2:Number) : void
  18.       {
  19.          alert("IStatServices","submitStat",arguments);
  20.       }
  21.    }
  22. }
  23.