mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-10 19:35:10 -05:00
PyMML indentation fix + cleanup.
This commit is contained in:
parent
054e04c615
commit
e57b3e7213
@ -14,15 +14,10 @@ class Mouse(object):
|
||||
It will allow several ways to set mouse positions and
|
||||
buttons. __getitem__ and __setitem__ are also implemented,
|
||||
so one can access mouse buttons states and positions with [].
|
||||
|
||||
|
||||
'''
|
||||
# _mc = MMLCore reference.
|
||||
_mc = None
|
||||
Left ='Left'
|
||||
Right = 'Right'
|
||||
Middle = 'Middle'
|
||||
Pos = 'Pos'
|
||||
Left, Right, Middle, Pos = 'Left', 'Right', 'Middle', 'Pos'
|
||||
|
||||
# last pointer position
|
||||
_lpp = (0, 0)
|
||||
|
Loading…
Reference in New Issue
Block a user