forked from Felk/dolphin
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdolphin.pyi
More file actions
33 lines (31 loc) · 822 Bytes
/
dolphin.pyi
File metadata and controls
33 lines (31 loc) · 822 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
"""
Aggregator module of all dolphin-provided modules.
It lets people import the dolphin-provided modules in a more
intuitive way. For example, people can then do this:
from dolphin import event, memory
instead of:
import dolphin_event as event
import dolphin_memory as memory
Valid:
import dolphin
from dolphin import *
from dolphin import event
import dolphin_event as event
Invalid:
import dolphin.event
from dolphin.event import ...
""" # noqa: D400,D415 # Tries to add a . on an import example
import dolphin_event as event
import dolphin_memory as memory
import dolphin_gui as gui
import dolphin_savestate as savestate
import dolphin_controller as controller
import dolphin_utils as utils
__all__ = [
"event",
"memory",
"gui",
"savestate",
"controller",
"utils",
]