-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
52 changed files
with
1,424 additions
and
359 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
Metadata-Version: 2.1 | ||
Name: pygameextra | ||
Version: 1.6.5.1 | ||
Summary: pygame extra is a mask for pygame, you can easily make complex games and or apps with much less lines then you would of before, Pygame Extra makes coding easier. The online documentation can be found at: https://pygame-extra.readthedocs.io/en/latest/ | ||
License: BSD-3-Clause | ||
Author: RedstoneHair | ||
Requires-Python: >=3.5 | ||
Classifier: License :: OSI Approved :: BSD License | ||
Classifier: Programming Language :: Python :: 3 | ||
Classifier: Programming Language :: Python :: 3.5 | ||
Classifier: Programming Language :: Python :: 3.6 | ||
Classifier: Programming Language :: Python :: 3.7 | ||
Classifier: Programming Language :: Python :: 3.8 | ||
Classifier: Programming Language :: Python :: 3.9 | ||
Requires-Dist: pygame (>=1.9.6) | ||
Requires-Dist: requests (>=2.22.0) |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
624 changes: 315 additions & 309 deletions
624
pygameextra/__init__.py → pygameextra/pygameextra/__init__.py
Large diffs are not rendered by default.
Oops, something went wrong.
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
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,34 @@ | ||
"""colors""" | ||
red = (255, 0, 0) | ||
darkred = (155, 0, 0) | ||
verydarkred = (55, 0, 0) | ||
|
||
green = (0, 255, 0) | ||
darkgreen = (0, 155, 0) | ||
verydarkgreen = (0, 55, 0) | ||
|
||
blue = (0, 0, 255) | ||
darkblue = (0, 0, 155) | ||
verydarkblue = (0, 0, 55) | ||
|
||
yellow = (255, 255, 0) | ||
darkyellow = (155, 155, 0) | ||
verydarkyellow = (55, 55, 0) | ||
|
||
aqua = (0, 255, 255) | ||
darkaqua = (0, 155, 155) | ||
verydarkaqua = (0, 55, 55) | ||
|
||
pink = (255, 0, 255) | ||
darkpink = (155, 0, 155) | ||
verydarkpink = (55, 0, 55) | ||
|
||
|
||
white = (255, 255, 255) | ||
|
||
black = (0, 0, 0) | ||
|
||
lightgray = (200, 200, 200) | ||
gray = (100, 100, 100) | ||
darkgray = (50, 50, 50) | ||
verydarkgray = (25, 25, 25) |
Binary file not shown.
Binary file not shown.
File renamed without changes.
Binary file not shown.
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
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
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
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes.
Oops, something went wrong.