forked from Racoonacoon/Ragnarok
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStateTypes.py
More file actions
20 lines (17 loc) · 730 Bytes
/
StateTypes.py
File metadata and controls
20 lines (17 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
## Ragnarok Engine State Types copyright 2010 Clinton Myers
## This library is part of the Ragnarok Engine. See it's license for more details.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU Lesser General Public License for more details.
##
## You should have received a copy of the GNU Lesser General Public License
## along with this program. If not, see <http://www.gnu.org/licenses/lgpl.html>.
#These represet mouse states we can query.
M_LEFT = 0
M_MIDDLE = 1
M_RIGHT = 2
#Represents the Keyboard and Mouse enums
KEYBOARD = 0
MOUSE = 1