# How To Use 1. Install pygame In your terminal, write `pip install pygame` 2. Initialize Issgraph In your main.py file write `from issgraph import *` to import everything from issgraph. Also write `Utils.init()` 3. Windows To create a window write `window = Graphics(width, height)` And this is the main loop (what will keep the window running) `while True: for event in window.game(): if event.type == window.shouldClose(): sys.exit() window.paint(0, 0, 0) window.update()`