Metadata-Version: 2.2
Name: cliengine
Version: 0.0.6
Summary: A simple and limited game engine for the command-line interface.
Home-page: 
Author: MinaRoblox
Author-email: emanuelgardunomondragon@gmail.com
License: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Topic :: Games/Entertainment
Classifier: Topic :: Multimedia :: Graphics
Classifier: Topic :: Software Development
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pyperclip
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: keywords
Dynamic: license
Dynamic: requires-dist
Dynamic: summary

# CLI-Engine

A very simple game engine designed to run in the terminal. It works using tables.

## Example Usage

```python
import cliEngine

# Initialize the game with a 9x9 board
game = cliEngine.Game(9, 9)  # Width and Height.
game.printBoard()  # Prints the board.
```


# Changelog 0.0.6
- NEW UPDATE BOYSS
- Added documentation to the functions, deciding on where to write the actual documentation.
- Refactored the Player class to Entity class.
- Made the Game class accept one more arg: The background sprite.
