> For the complete documentation index, see [llms.txt](https://tsunami014.gitbook.io/blaze-sudios/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tsunami014.gitbook.io/blaze-sudios/main-functionality/game.md).

# Making a game

## Demo games

Demo games to see some real examples of games can be found [HERE](https://github.com/Tsunami014/BlazeTests)!

## HOW TO MAKE A GAME

### 1. Get set up

```py
from BlazeSudio import Game
import BlazeSudio.Game.statics as Ss
```

These will be the parts of the library to make your game with.

For starters, let's make a Game object

```py
G = Game()
```

// TODO: Finish
