1 # Target.py 2 3 -class Target(): 4 ''' 5 Dummy class to make RaspiBrick source compatible with RaspiSim. All methods are empty. 6 ''' 7 8 - def __init__(self, *args): 9 pass 10 11 - def getImageName(self): 12 return None 13 14 - def getBufferedImage(self): 15 return None 16 17 - def getMesh(self): 18 return None 19