mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-22 09:12:19 -05:00
Woops.. Some shit
This commit is contained in:
parent
6ecc1ce2ad
commit
b045268ba5
@ -22,7 +22,8 @@
|
|||||||
|
|
||||||
\begin{document}
|
\begin{document}
|
||||||
\title{Mufasa Developers Manual}
|
\title{Mufasa Developers Manual}
|
||||||
\author{Merlijn Wajer (Wizzup?) \and Raymond van Veneti\"{e} (mastaraymond)}
|
\author{Merlijn Wajer (Wizzup?) \and Raymond van Veneti\"{e} (mastaraymond)
|
||||||
|
\and Benjamin J Land (BenLand100) \and Nielsie95}
|
||||||
\maketitle
|
\maketitle
|
||||||
\tableofcontents
|
\tableofcontents
|
||||||
% \lstset{language=Pascal}
|
% \lstset{language=Pascal}
|
||||||
|
@ -5,7 +5,8 @@
|
|||||||
|
|
||||||
\begin{document}
|
\begin{document}
|
||||||
\title{Mufasa Handbook}
|
\title{Mufasa Handbook}
|
||||||
\author{Merlijn Wajer \and Raymond van Veneti\"{e}}
|
\author{Merlijn Wajer \and Raymond van Veneti\"{e} \and Benjamin J Land
|
||||||
|
\and Nielsie95}
|
||||||
|
|
||||||
\maketitle
|
\maketitle
|
||||||
\tableofcontents
|
\tableofcontents
|
||||||
|
@ -4,7 +4,8 @@
|
|||||||
\usepackage{amsmath}
|
\usepackage{amsmath}
|
||||||
\begin{document}
|
\begin{document}
|
||||||
\title{Simba Intro}
|
\title{Simba Intro}
|
||||||
\author{Merlijn Wajer \and Raymond van Veneti\"{e}}
|
\author{Merlijn Wajer \and Raymond van Veneti\"{e} \and Benjamin J Land \and
|
||||||
|
Nielsie95}
|
||||||
\maketitle
|
\maketitle
|
||||||
\tableofcontents
|
\tableofcontents
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
\begin{document}
|
\begin{document}
|
||||||
\title{Mufasa PascalScript Handbook}
|
\title{Mufasa PascalScript Handbook}
|
||||||
\author{Merlijn Wajer \and Raymond van Veneti\"{e}
|
\author{Merlijn Wajer \and Raymond van Veneti\"{e}
|
||||||
\and Benjamin J. Land}
|
\and Benjamin J. Land \and Nielsie95}
|
||||||
|
|
||||||
\definecolor{typeGreen}{rgb}{0.0, 0.6, 0.0}
|
\definecolor{typeGreen}{rgb}{0.0, 0.6, 0.0}
|
||||||
\definecolor{typeRed}{rgb}{0.6, 0.0, 0.0}
|
\definecolor{typeRed}{rgb}{0.6, 0.0, 0.0}
|
||||||
|
@ -14,15 +14,10 @@ class Mouse(object):
|
|||||||
It will allow several ways to set mouse positions and
|
It will allow several ways to set mouse positions and
|
||||||
buttons. __getitem__ and __setitem__ are also implemented,
|
buttons. __getitem__ and __setitem__ are also implemented,
|
||||||
so one can access mouse buttons states and positions with [].
|
so one can access mouse buttons states and positions with [].
|
||||||
|
|
||||||
|
|
||||||
'''
|
'''
|
||||||
# _mc = MMLCore reference.
|
# _mc = MMLCore reference.
|
||||||
_mc = None
|
_mc = None
|
||||||
Left ='Left'
|
Left, Right, Middle, Pos = 'Left', 'Right', 'Middle', 'Pos'
|
||||||
Right = 'Right'
|
|
||||||
Middle = 'Middle'
|
|
||||||
Pos = 'Pos'
|
|
||||||
|
|
||||||
# last pointer position
|
# last pointer position
|
||||||
_lpp = (0, 0)
|
_lpp = (0, 0)
|
||||||
|
@ -5,8 +5,8 @@ class POINT(Structure):
|
|||||||
POINT represents a point with two variables, x and y.
|
POINT represents a point with two variables, x and y.
|
||||||
POINT is mainly used for Python <-> MML communication.
|
POINT is mainly used for Python <-> MML communication.
|
||||||
'''
|
'''
|
||||||
_fields_ = [('x', c_int),
|
_fields_ = [('x', c_int),
|
||||||
('y', c_int)]
|
('y', c_int)]
|
||||||
|
|
||||||
PPOINT = POINTER(POINT)
|
PPOINT = POINTER(POINT)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user