diff options
| author | Amir Rajan <[email protected]> | 2019-09-12 04:36:32 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2019-09-12 04:36:32 -0500 |
| commit | 52e9d8fcffec554595e11e4e5197d34e3b830a0f (patch) | |
| tree | 1d3f7413a6526cb906fbf26b9cace4d61d0d8fba | |
| parent | 20063f372de0eedda30f9a5616ee7cec46c2927b (diff) | |
| parent | aa6bad76661bfce64d1c3b95d12d7e42fbb2c86a (diff) | |
| download | dragonruby-game-toolkit-contrib-52e9d8fcffec554595e11e4e5197d34e3b830a0f.tar.gz dragonruby-game-toolkit-contrib-52e9d8fcffec554595e11e4e5197d34e3b830a0f.zip | |
Merge pull request #5 from pusewicz/pu-docs-for-args
Document few accessors
| -rw-r--r-- | dragon/args.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/dragon/args.rb b/dragon/args.rb index 3ba1396..0f39ede 100644 --- a/dragon/args.rb +++ b/dragon/args.rb @@ -198,6 +198,7 @@ module GTK @render_targets[name] end + # @return [GTK::OutputsArray] The array of solids to render during current tick def solids @outputs.solids end @@ -206,6 +207,7 @@ module GTK @outputs.static_solids end + # @return [GTK::OutputsArray] The array of sprites to render during current tick def sprites @outputs.sprites end @@ -214,6 +216,7 @@ module GTK @outputs.static_sprites end + # @return [GTK::OutputsArray] The array of labels to render during current tick def labels @outputs.labels end @@ -222,6 +225,7 @@ module GTK @outputs.static_labels end + # @return [GTK::OutputsArray] The array of lines to render during current tick def lines @outputs.lines end @@ -230,6 +234,7 @@ module GTK @outputs.static_lines end + # @return [GTK::OutputsArray] The array of borders to render during current tick def borders @outputs.borders end |
