Added a new player "Turn Right Killer", and made a new tournament mode.
[troncode.git] / player_null.py
blobc74334f6f3e30258ce6a7ac95023e8387d668fe1
1 from troncode_values import *
3 class NullPlayer( object ):
5 def __init__( self ):
6 pass
8 def GetColour( self ):
9 return ( 255, 255, 255 )
11 def GetName():
12 return "Null Player"
13 GetName = staticmethod( GetName )
15 def GetDir( self, position, direction, gameboard ):
16 return direction