2020-04-05 18:48:57 +02:00
# Birb Love2D Engine
2019-03-16 12:24:42 +01:00
2020-04-05 18:48:57 +02:00
Birb aim to be an integrated, simple engine for love2D. It aim to work as a set of managers to automatically handle inputs, screen, and several utilities to make game developpement easier and less repetitive.
2019-03-16 12:42:18 +01:00
2020-04-05 18:48:57 +02:00
Birb use [Classic ](https://github.com/rxi/classic/ ) as its base Object.
2019-03-16 12:42:18 +01:00
## How to load GameCore
2020-04-05 18:48:57 +02:00
The birb engine must be located in the `birb/` folder to work. After that, all you have to do is to load a gamecore based engine and then.
Note : the `birb` and `utils` global namespace will be used by birb.
2019-03-16 12:42:18 +01:00
````
2020-04-05 18:48:57 +02:00
require "birb"
2019-03-16 12:42:18 +01:00
function love.load()
2020-04-05 18:48:57 +02:00
birb.startCore()
2019-03-16 12:42:18 +01:00
end
````