From 72492a9f5a186afd4e7ff7c27d592a194a06f543 Mon Sep 17 00:00:00 2001 From: Syntriax Date: Mon, 5 Feb 2024 12:20:12 +0300 Subject: [PATCH] docs: Basic README.md --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..9f6e1b1 --- /dev/null +++ b/README.md @@ -0,0 +1,17 @@ +# Work In Progress + +This engine is still in development but the implemented features include: +- Modular Systems +- Behaviour System +- 2D Physics Engine(**Not Fully Completed, but usable**) + - Rigid Body Simulations + - Collision Detection (Convex Shape & Circle) + - Collision Resolution (**Not Fully Completed**) +- Vector2D, AABB, Circle, Line, LineEquation, Projection & Shape Data Types +- General Math + +--- + +**A detailed README file will be written in the future. If you want to check out how to use this, please checkout this example Pong game made using this engine on top of [MonoGame](https://monogame.net/) from the link bellow.** + +[Pong Source Code](https://git.syntriax.com/Syntriax/Engine-Pong)