home *** CD-ROM | disk | FTP | other *** search
- class PlayerController
- {
- var m_kPlayer;
- function PlayerController()
- {
- this.init();
- }
- function init()
- {
- this.m_kPlayer = undefined;
- }
- function setPlayer(kPlayer)
- {
- this.m_kPlayer = kPlayer;
- }
- function onStartGame()
- {
- }
- function onStartRound()
- {
- }
- function onEndRound()
- {
- }
- function update(fDeltaSecs)
- {
- }
- }
-