Skip to content

Commit 9df07ed

Browse files
committed
Update 1.1.0
1 parent 0e54ca6 commit 9df07ed

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ A lib to build 2D Games.
1616
- Windows 10 (V 0.1.0-DEV --> Latest)
1717
- Version of Python :
1818
- 3.7.1 (V 0.1.0-DEV --> Latest)
19-
- Librairy :
19+
- Library :
2020
- PyGame (V 0.1.0-DEV --> Latest)
2121

2222
## Known bugs of the developing version
@@ -25,7 +25,7 @@ A lib to build 2D Games.
2525

2626
## Changelog
2727

28-
### V 1.1.0 : XXX Update - XX/XX/19
28+
### V 1.1.0 : General Update - 25/05/19
2929

3030
- LifeComponent : Remove creation of sprite
3131
- LifeComponent : Add get_life and get_maxlife functions
@@ -34,10 +34,12 @@ A lib to build 2D Games.
3434
- Enums : Move Enums in classes
3535
- EntitySystem : Add function to remove entity
3636
- UISystem : Add function to remove widget
37+
- SoundSystem : Create
3738
- Widgets : You can hide and show widgets
3839
- Entry : You can use your own background
3940
- Color-Colors : Create color class and colors enums
4041
- Font : Create font class
42+
- Optimisation of lib
4143

4244
- Bug Fix : Rotation of SpriteComponent don't work
4345

pyengine/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
try:
22
from pyengine.Window import Window
33
from pyengine.Entity import Entity
4-
from pyengine.GameState import GameState
5-
from pyengine.Enums import ControlType, MouseButton, CollisionCauses, StateCallbacks, Controls
4+
from pyengine.GameState import GameState, StateCallbacks
5+
from pyengine.Components.PhysicsComponent import CollisionCauses
6+
from pyengine.Components.ControlComponent import ControlType, Controls, MouseButton
67
from pygame import locals as const
78
except ModuleNotFoundError:
89
pass

0 commit comments

Comments
 (0)