/usr/share/games/whichwayisup/lib/trigger.py is in whichwayisup 0.7.9-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 | '''A class for storing triggers affecting gameplay.
Flip triggers and also level editing triggers in the future.'''
class Trigger:
def __init__(self, trigger_type, x, y, tilex = None, tiley = None):
self.trigger_type = trigger_type
self.x = x
self.y = y
self.tilex = tilex
self.tiley = tiley
return
|