From c59f68b75f1b66a137d6791490bded43ff477910 Mon Sep 17 00:00:00 2001 From: richard Date: Fri, 27 Aug 2021 03:58:49 +0100 Subject: [PATCH] update readme --- README.md | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 5d741a8..8494d00 100644 --- a/README.md +++ b/README.md @@ -24,14 +24,17 @@ If yours isn't available then pip will attempt to build from source, so you will There are three different ways of using this binding. You only need to pick one method, but you can combine two methods in one program if you want to. -If you are familiar with C coding and the Raylib C library and you want to use an exact copy of -the C API, choose raylib.static. +### If you are familiar with C coding and the Raylib C library and you want to use an exact copy of the C API -If you prefer a slightly more Pythonistic API and don't mind it might be slightly slower, choose -raylib.pyray. +Use [raylib.static](https://electronstudio.github.io/raylib-python-cffi/raylib.html). -If you insist on dynamic bindings and don't care that they are slower and less safe, choose -raylib.dynamic. +### If you prefer a slightly more Pythonistic API and don't mind it might be slightly slower + +Use [raylib.pyray](https://electronstudio.github.io/raylib-python-cffi/pyray.html). + +### If you insist on dynamic bindings and don't care that they are slower and less safe + +Use [raylib.dynamic](https://electronstudio.github.io/raylib-python-cffi/dynamic.html).