home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Nave / naval.swf / scripts / __Packages / CTimeCounter.as < prev    next >
Encoding:
Text File  |  2006-06-13  |  312 b   |  21 lines

  1. class CTimeCounter
  2. {
  3.    var curTime;
  4.    function CTimeCounter()
  5.    {
  6.    }
  7.    function setTime(time)
  8.    {
  9.       this.curTime = time;
  10.    }
  11.    function process(dTime)
  12.    {
  13.       this.curTime -= dTime;
  14.       return this.curTime > 0;
  15.    }
  16.    function endTime()
  17.    {
  18.       this.curTime = 0;
  19.    }
  20. }
  21.