Metadata-Version: 2.1
Name: NasNas
Version: 0.1
Summary: A simple game framework to get started quickly with python and sfml.
Home-page: https://github.com/Madour/NasNas
Author: Modar Nasser
Author-email: modar1999@gmail.com
License: UNKNOWN
Description: # NasNas
        ### A simple game framework to get started quickly with python and sfml.
        
        ### Features :
         - [x] Automatic resource loader and  manager system
         - [x] Scene and Layers system
         - [x] Entities, sprites and animations 
         - [x] Cameras
         - [x] Text and bitmap fonts
         - [x] Tiled map loader (.tmx)
         - [x] Debug text display in-game
         - [x] Transitions
         
        ### In progress :
         - [x] Menus and UI
         
        ### To do :
         - [ ] Splash screens
         - [ ] Levels and game events management
         - [ ] In-game command line for debugging
         - [ ] Particles system
        
        
        ### Install
        
        Let's say your project has the following structure
        ```
        YourProject
            |_ assets
            |_ src
            main.py
        ```
        
        Download the repository and copy the NasNas folder into your project src folder.
        ```
        YourProject
            |_ assets
            |_ src
                |_ NasNas
            main.py
        ```
        Then you can, import the framework with:
         ```python 
        import src.NasNas as ns
        ```
        
        ### Get started
        
        Visit the [wiki](https://github.com/Madour/pySFMLGameEngine/wiki) to get started.
        
        You can also take a look at the example project to see how to use it.
        
        Be sure to run run_example.py from example folder like this : `python3 ../run_example.py`
        
        ### Author
        
         - Modar Nasser
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
