summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorjussi2023-10-27 01:16:03 +0300
committerjussi2023-10-27 01:16:03 +0300
commit6be8d71fac6dfdc3a4a55e342c61435b8906c8b9 (patch)
tree3cf7848ec47636b383a452e413ff78e91be4e59c /README.md
parent56c365c8cc88455d69df42e7842c986e760c776e (diff)
downloadreilua-enhanced-6be8d71fac6dfdc3a4a55e342c61435b8906c8b9.tar.gz
reilua-enhanced-6be8d71fac6dfdc3a4a55e342c61435b8906c8b9.tar.bz2
reilua-enhanced-6be8d71fac6dfdc3a4a55e342c61435b8906c8b9.zip
Release v0.5.
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/README.md b/README.md
index 7b6ed76..f8ba801 100644
--- a/README.md
+++ b/README.md
@@ -29,6 +29,14 @@ List of some MISSING features that are planned to be included. For specific func
* Audio
* AudioStream management functions
+## Roadmap
+
+v0.6
+ * Switch from id based objects to Lua userdata(like most bindings). Resources won't be stored in State anymore.
+ * Change argument checking to use more luaL_checkx functions and remove the TraceLog messages.
+v0.7
+ * Switch to Raylib v5.0?
+
## Usage
Application needs 'main.lua' or 'main' file as entry point. ReiLua executable will first look it from same directory. Alternatively, path to the folder where "main.lua" is located can be given as argument. There are five Lua functions that the framework will call, 'RL.init', 'RL.process', 'RL.draw', 'RL.log' and 'RL.exit'.