diff --git a/doc/README.md b/doc/README.md index d1d91ec9f..92d328cce 100644 --- a/doc/README.md +++ b/doc/README.md @@ -13,3 +13,4 @@ This is the index of the documentation for Flame, updated to version `0.8.3`. * [The Game Loop](game.md) * [Input](input.md) * [Util](util.md) +* [Box2d](box2d.md) diff --git a/doc/box2d.md b/doc/box2d.md new file mode 100644 index 000000000..3bc696c8c --- /dev/null +++ b/doc/box2d.md @@ -0,0 +1,7 @@ +# Box2d + +Altough Flame does not implements Box2d itself, it bundles a forked port of the Java Box2d to Dart by Google. + +The source of the bundled box2d on Flame can be found [here](https://github.com/feroult/box2d.dart). + +There is also a simple example game that can be used as reference of how to use box2d on Flame [here](https://github.com/feroult/haunt).