Metadata-Version: 2.1
Name: MGE
Version: 0.2.0
Summary: A library for creating games and interfaces graphics
Home-page: UNKNOWN
Author: Lucas Guimarães
Author-email: lucasguimaraes.commercial@gmail.com
License: MIT License
Keywords: MGE pygame
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENCE

# MGE

Version: 0.2.0  
[other versions](https://github.com/lucas224112/MGE_Other_Versions)

## Dependencies
[```pygame```](https://pypi.org/project/pygame/) -
[```numpy```](https://pypi.org/project/numpy/) -
[```pillow```](https://pypi.org/project/Pillow/) -
[```opencv-python```](https://pypi.org/project/opencv-python/) -
[```pyperclip```](https://pypi.org/project/pyperclip/) -
[```screeninfo```](https://pypi.org/project/screeninfo/)

## Example of use
```py
import sys
import MGE

MGE.Program.init()

gif = MGE.Object2D([0, 0], 0, [500, 500])
gif.set_material(MGE.Material(MGE.Texture(MGE.Image("./image.gif"))))

MGE.Program.screen.set_size(500, 500)
MGE.Program.set_clock(120)

while True:
    if MGE.Program.event.type == MGE.Screen_inputs.quit or MGE.keyboard("f1"):
        sys.exit()

    gif.draw_object(MGE.Program.screen)

    MGE.Program.set_caption(f"Gif-MGE | FPS:{int(MGE.Program.get_fps())}")
    MGE.Program.update()
```

- ### Another examples
  [Open Gif](https://github.com/lucas224112/MGE_Open_Gif) - 
  [Text Box](https://github.com/lucas224112/MGE_Text_Box)


