diff options
| author | realtradam <[email protected]> | 2022-02-06 05:42:14 -0500 |
|---|---|---|
| committer | realtradam <[email protected]> | 2022-02-06 05:42:14 -0500 |
| commit | f572573c195a41b4c3aa47b1c5f6c0dc9213b17a (patch) | |
| tree | 71b79c678aae428cd8333c0b925714ec84aa30fd /src/core.c | |
| parent | 2e283dd01b5dc80e9606add4819a15d8803c167c (diff) | |
| download | mruby-raylib-f572573c195a41b4c3aa47b1c5f6c0dc9213b17a.tar.gz mruby-raylib-f572573c195a41b4c3aa47b1c5f6c0dc9213b17a.zip | |
working structs across files and new macros for struct wrapping
Diffstat (limited to 'src/core.c')
| -rw-r--r-- | src/core.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1,5 +1,10 @@ #include "raylib/core.h" +const struct mrb_data_type Color_type = { + "Color", mrb_free +}; + + /* * @overload init_window(width: 800, height: 600, title: "Hello World from Raylib!") * @param width [Integer] |
