diff options
| author | arngo <[email protected]> | 2022-01-12 00:14:23 -0500 |
|---|---|---|
| committer | arngo <[email protected]> | 2022-01-12 00:14:23 -0500 |
| commit | c5923d9ec44a34a4f27b7bb6abf447b9fc1bbf1a (patch) | |
| tree | 3cb58487935fa9b8af105ccfe50c565a2797f123 /build/temp/anything.c | |
| parent | 79f35f61623f12e31894ac9e76b5057d43b29b7a (diff) | |
| download | FelFlameEngine-c5923d9ec44a34a4f27b7bb6abf447b9fc1bbf1a.tar.gz FelFlameEngine-c5923d9ec44a34a4f27b7bb6abf447b9fc1bbf1a.zip | |
create rakefile and add compiled raylib files
Diffstat (limited to 'build/temp/anything.c')
| -rw-r--r-- | build/temp/anything.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/build/temp/anything.c b/build/temp/anything.c new file mode 100644 index 0000000..49795f7 --- /dev/null +++ b/build/temp/anything.c @@ -0,0 +1,22 @@ +#include <stdint.h> +#include "mruby.h" +#include "mruby/irep.h" +#ifdef __cplusplus +extern const uint8_t anything[]; +#endif +const uint8_t anything[] = { +0x52,0x49,0x54,0x45,0x30,0x32,0x30,0x30,0x00,0x00,0x00,0x6c,0x4d,0x41,0x54,0x5a, +0x30,0x30,0x30,0x30,0x49,0x52,0x45,0x50,0x00,0x00,0x00,0x50,0x30,0x33,0x30,0x30, +0x00,0x00,0x00,0x44,0x00,0x01,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x13,0x14,0x01, +0x51,0x02,0x00,0x2f,0x01,0x00,0x01,0x1f,0x01,0x01,0x2f,0x01,0x02,0x00,0x39,0x01, +0x6b,0x00,0x01,0x00,0x00,0x04,0x74,0x65,0x73,0x74,0x00,0x00,0x03,0x00,0x04,0x70, +0x75,0x74,0x73,0x00,0x00,0x02,0x59,0x65,0x00,0x00,0x08,0x63,0x5f,0x6d,0x65,0x74, +0x68,0x6f,0x64,0x00,0x45,0x4e,0x44,0x00,0x00,0x00,0x00,0x08, +}; + +int main() { + mrb_state *mrb = mrb_open(); + mrb_load_irep(mrb, anything); + mrb_close(mrb); + return 0; +} |
