diff options
| author | realtradam <[email protected]> | 2022-02-22 13:26:34 -0500 |
|---|---|---|
| committer | realtradam <[email protected]> | 2022-02-22 13:26:34 -0500 |
| commit | 3a559960526ee7a9c59bfdef48699cf4880e1e7d (patch) | |
| tree | ac1d2021b54b822a52b4f3ef516e47ae9b9be22f /include | |
| parent | e06bb3f7ee54e67a5e2e54bdb0eeb886e52afe3c (diff) | |
| download | mruby-raylib-development.tar.gz mruby-raylib-development.zip | |
method for drawing polygonsdevelopment
Diffstat (limited to 'include')
| -rw-r--r-- | include/mruby-raylib/text.h | 2 | ||||
| -rw-r--r-- | include/mruby-raylib/types.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/mruby-raylib/text.h b/include/mruby-raylib/text.h index 0464a30..19b7a8d 100644 --- a/include/mruby-raylib/text.h +++ b/include/mruby-raylib/text.h @@ -6,8 +6,6 @@ #include <mruby/numeric.h> #include <stdlib.h> - - void mrb_init_raylib_text(mrb_state*); #endif /* end of include guard TEXT_H */ diff --git a/include/mruby-raylib/types.h b/include/mruby-raylib/types.h index f6f5b67..3052ec5 100644 --- a/include/mruby-raylib/types.h +++ b/include/mruby-raylib/types.h @@ -20,10 +20,12 @@ extern const struct mrb_data_type Sound_type; extern const struct mrb_data_type Music_type; extern const struct mrb_data_type Vector2_type; extern const struct mrb_data_type NPatchInfo_type; +extern const struct mrb_data_type Font_type; void helper_texture_free(mrb_state*, void*); void helper_sound_free(mrb_state*, void*); void helper_music_free(mrb_state*, void*); +void helper_font_free(mrb_state*, void*); #endif /* end of include guard MRUBY_RAYLIB_TYPES_H */ |
