1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-19 15:41:22 +02:00
MLEM/Docs/articles/startup.md

9 lines
938 B
Markdown
Raw Normal View History

# MLEM.Startup
2020-05-21 01:08:36 +02:00
**MLEM.Startup** is a simple package that contains a `MlemGame` class which extends MonoGame's `Game`. This class contains additional properties that most games created with MonoGame and MLEM will have:
2021-10-24 00:30:50 +02:00
- An [InputHandler](xref:MLEM.Input.InputHandler)
2020-05-21 01:08:36 +02:00
- A `SpriteBatch` and `GraphicsDeviceManager`
2021-10-24 00:30:50 +02:00
- A [UiSystem](ui.md)
2020-05-21 01:08:36 +02:00
- Some delegate callbacks for loading, updating and drawing that allow additional code to be executed from outside the game class
Additionally, it comes with the [Coroutine](https://www.nuget.org/packages/Coroutine) package preinstalled. The Coroutine package allows creating and running operations alongside the regular game loop without asynchrony. It comes with a `CoroutineEvents` class that contains two types of events that are automatically invoked by `MlemGame`. For more information on how this is useful, see [the Coroutine README](https://github.com/Ellpeck/Coroutine/blob/main/README.md).