-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy path__init__.py
More file actions
40 lines (32 loc) · 917 Bytes
/
__init__.py
File metadata and controls
40 lines (32 loc) · 917 Bytes
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
31
32
33
34
35
36
37
38
39
40
"""The fast Python port of libtcod.
This module can be used as a drop in replacement for the official libtcodpy module.
Bring any issues or feature requests to GitHub: https://github.com/libtcod/python-tcod
Read the documentation online: https://python-tcod.readthedocs.io/en/latest/
"""
from __future__ import annotations
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
from tcod import bsp, color, console, context, event, image, los, map, noise, path, random, tileset # noqa: A004
from tcod.cffi import __sdl_version__, ffi, lib
from tcod.tcod import __getattr__ # noqa: F401
from tcod.version import __version__
__all__ = [
"Console",
"__sdl_version__",
"__version__",
"bsp",
"color",
"console",
"context",
"event",
"ffi",
"image",
"lib",
"los",
"map",
"noise",
"path",
"random",
"tileset",
"tileset",
]