home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Acao / flameout.swf / scripts / __Packages / PlayerController.as < prev    next >
Encoding:
Text File  |  2006-06-13  |  418 b   |  29 lines

  1. class PlayerController
  2. {
  3.    var m_kPlayer;
  4.    function PlayerController()
  5.    {
  6.       this.init();
  7.    }
  8.    function init()
  9.    {
  10.       this.m_kPlayer = undefined;
  11.    }
  12.    function setPlayer(kPlayer)
  13.    {
  14.       this.m_kPlayer = kPlayer;
  15.    }
  16.    function onStartGame()
  17.    {
  18.    }
  19.    function onStartRound()
  20.    {
  21.    }
  22.    function onEndRound()
  23.    {
  24.    }
  25.    function update(fDeltaSecs)
  26.    {
  27.    }
  28. }
  29.