(self, *args)
| 90 | |
| 91 | class MyApp(App): |
| 92 | def __init__(self, *args): |
| 93 | res_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'res') |
| 94 | super(MyApp, self).__init__(*args, static_file_path={'my_resources': res_path}) |
| 95 | |
| 96 | def display_time(self): |
| 97 | self.lblTime.set_text('Play time: ' + str(self.time_count)) |