Make pools with generations and bind mouse position logic

This commit is contained in:
2026-05-06 16:40:36 +01:00
parent 08a642e07a
commit 3894b90398
8 changed files with 221 additions and 125 deletions
+3 -1
View File
@@ -9,6 +9,8 @@
#define HASH_GET(h, key) mrb_hash_get(Ruby::mrb, h, SYM(key))
#define HASH_SET(h, key, value) mrb_hash_set(Ruby::mrb, h, SYM(key), value)
#define HASH_FLOAT(h, key, out) \
do { \
mrb_value v = HASH_GET(h, key); \
@@ -28,7 +30,7 @@
} while (0)
struct Wrapper {
int id;
uint64_t id;
};
#define ADD_METHOD(NAME, METHOD, FUNC, ARGS) \