diff options
| author | Amir Rajan <[email protected]> | 2020-10-13 00:45:16 -0500 |
|---|---|---|
| committer | Amir Rajan <[email protected]> | 2020-10-13 00:48:54 -0500 |
| commit | 05cbef7fb8224332795e5685be499d81d20e7d93 (patch) | |
| tree | 13ec5f1755c2f45618741f2f016ed8729dbedd41 /dragon/args.rb | |
| parent | abad948c1154d88d79b9f891e3b7315540e0b0a3 (diff) | |
| download | dragonruby-game-toolkit-contrib-05cbef7fb8224332795e5685be499d81d20e7d93.tar.gz dragonruby-game-toolkit-contrib-05cbef7fb8224332795e5685be499d81d20e7d93.zip | |
Synced with 1.26.
Diffstat (limited to 'dragon/args.rb')
| -rw-r--r-- | dragon/args.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/dragon/args.rb b/dragon/args.rb index 38a28b7..ecb7040 100644 --- a/dragon/args.rb +++ b/dragon/args.rb @@ -21,6 +21,11 @@ module GTK # @return [Outputs] attr_accessor :outputs + # Contains the means to interact with the audio mixer. + # + # @return [Hash] + attr_accessor :audio + # Contains display size information to assist in positioning things on the screen. # # @return [Grid] @@ -54,6 +59,7 @@ module GTK def initialize runtime, recording @inputs = Inputs.new @outputs = Outputs.new args: self + @audio = {} @passes = [] @state = OpenEntity.new @state.tick_count = -1 |
