From 9acf301237f1262b6a9940afcaa5382ceaf56799 Mon Sep 17 00:00:00 2001 From: Niklas Rosenqvist Date: Thu, 21 Jul 2022 22:32:28 +0200 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c4cbb08..6423236 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # GDScript Interfaces -This is a utility library, which provides a very naive GDScript implementation of interfaces for Godot. It can by its nature only check for implementations at runtime and cannot validate method parameter definitions due to the language's lack of introspection. By default are all implementations validated when the application is loaded, so it behaves quite similarly to how one would expect interfaces to work in other languages. So it may serve as a helpful tool until a native solution is developed for GDScript. +This is a utility library, which provides a very naive GDScript implementation of interfaces for Godot. It can by its nature only check for implementations at runtime and cannot validate method parameter definitions due to the language's lack of introspection. All implementations are validated when the application is loaded by default, so it behaves quite similarly to how one would expect interfaces to work in other languages. So it may serve as a helpful tool until [a native solution](https://github.com/godotengine/godot-proposals/issues/4872) is developed for GDScript. ## Contributions