Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/api/Mouse.py
blob: c487c56041034c1a2c12a93d3bbc6ee062737788 (plain)
1
2
3
4
5
6
7
8
9
10
11
# -*- coding: utf-8 -*-

import pygame



def get_position():
    return pygame.mouse.get_pos()

def get_pressed():
    return pygame.mouse.get_pressed()