Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Gordon003 authored Jan 29, 2021
1 parent 7172d19 commit 35c9cec
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions scratch_py/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Module List
| Modules | Links |
# List
| Classes | Links |
| ------------------------- | :-------------------------------------------------------------------------------: |
| Game Manager | [Link](https://github.com/Gordon003/Scratch-To-Python/blob/main/scratch_py/README.md#game-manager) |
| Sprite | [Link](https://github.com/Gordon003/Scratch-To-Python/blob/main/scratch_py/README.md#sprite) |
Expand All @@ -10,8 +10,6 @@ The Game Manager is basically the CPU of this library. Initially started the Pyg
- Make new **Game Manager** object
```python
'''
Set up screen size 800 x 600
Arguments
----------
width : int
Expand All @@ -24,7 +22,6 @@ game_directory: str
Returns
-------
game : GameManger
Manager that will follow order
'''
from scratch_py import manager
import os
Expand Down Expand Up @@ -188,6 +185,14 @@ game.update()
# Sprite
Sprite is basically the same Sprite from Scratch. You can move it, transform it and many more!

| Modules | Links |
| ------------------------- | :-------------------------------------------------------------------------------: |
| Motion | [Link](https://github.com/Gordon003/Scratch-To-Python/blob/main/scratch_py/README.md#game-manager) |
| Looks | [Link](https://github.com/Gordon003/Scratch-To-Python/blob/main/scratch_py/README.md#sprite) |
| Events | [Link](https://github.com/Gordon003/Scratch-To-Python/blob/main/scratch_py/README.md#sprite) |
| Control | [Link](https://github.com/Gordon003/Scratch-To-Python/blob/main/scratch_py/README.md#sprite) |
| Sensing | [Link](https://github.com/Gordon003/Scratch-To-Python/blob/main/scratch_py/README.md#sprite) |

- Create new sprite
```python
Arguments
Expand Down

0 comments on commit 35c9cec

Please sign in to comment.