From 4fc75d49346be24594cdefc4d5a886069cde9bf9 Mon Sep 17 00:00:00 2001 From: Dacode45 Date: Sat, 18 May 2024 18:15:23 -0700 Subject: [PATCH] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 8a666eb0..d77b42fc 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,8 @@ Though this binding tries to stay close to the simple C API, it makes some chang +Most development happens over at: https://github.com/raylib-rs/raylib-rs + - Resources are automatically cleaned up when they go out of scope (or when `std::mem::drop` is called). This is essentially RAII. This means that "Unload" functions are not exposed (and not necessary unless you obtain a `Weak` resource using make_weak()). - Most of the Raylib API is exposed through `RaylibHandle`, which is for enforcing that Raylib is only initialized once, and for making sure the window is closed properly. RaylibHandle has no size and goes away at compile time. Because of mutability rules, Raylib-rs is thread safe!