-
-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
423: Adds docs for GameEngine r=astronouth7303 a=pathunstrom Co-authored-by: Piper Thunstrom <pathunstrom@gmail.com>
- Loading branch information
Showing
5 changed files
with
135 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -191,3 +191,4 @@ | |
|
||
# -- autodoc configuration | ||
autodoc_mock_imports = ['sdl2'] | ||
autoclass_content = 'both' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
.. py:currentmodule:: ppb.engine | ||
================ | ||
GameEngine | ||
================ | ||
|
||
The :py:class:`GameEngine` is the literal beating heart of ppb: It publishes the | ||
event queue, is the source of the :class:`~events.Idle` event, and is the | ||
root container of the object tree. | ||
|
||
Some of the engine of the API is definitely intended for advanced users. Use | ||
the various methods of :py:class:`GameEngine` with caution. | ||
|
||
.. autoclass:: ppb.GameEngine | ||
:members: | ||
:undoc-members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,5 +15,6 @@ decisions are made, see the discussion section. | |
assets | ||
scenes | ||
sprites | ||
engine | ||
sound | ||
features/index |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters