File: __init__.py

package info (click to toggle)
pysdl2 0.9.17%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,328 kB
  • sloc: python: 24,685; makefile: 36; sh: 8
file content (30 lines) | stat: -rw-r--r-- 753 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
"""sdl2 extensions.

This package provides easy access to the most common used video and graphics
functionality of the SDL2 bindings. It enables you to easily create windows,
display on them and to manipulate the shown graphics.
"""
from .algorithms import *
from .array import *
from .color import *
from .resources import *
from .events import *
from .ebs import *

from .err import *
from .common import *
from .draw import *
from .bitmapfont import *
from .ttf import *
from .uisystem import *
from .msgbox import *
from .image import *
from .pixelaccess import *
from .renderer import *
from .sprite import *
from .spritesystem import *
from .surface import *
from .window import *
from .mouse import *
from .displays import *
from .input import *