Module: FMOD
- Defined in:
- lib/fmod.rb,
lib/fmod/enums.rb,
lib/fmod/sound.rb,
lib/fmod/system.rb,
lib/fmod/channel.rb,
lib/fmod/constants.rb,
lib/fmod/functions.rb
Defined Under Namespace
Modules: Constants, Enums, Functions Classes: Channel, Sound, System
Class Method Summary collapse
- .init ⇒ Object
-
.system ⇒ Object
Ruby version of the system.
-
.system_pointer ⇒ Object
This pointer is used by many of the sound functions.
Class Method Details
.init ⇒ Object
14 15 16 |
# File 'lib/fmod.rb', line 14 def self.init @system = System.new end |
.system ⇒ Object
Ruby version of the system
19 20 21 |
# File 'lib/fmod.rb', line 19 def self.system @system end |
.system_pointer ⇒ Object
This pointer is used by many of the sound functions
24 25 26 |
# File 'lib/fmod.rb', line 24 def self.system_pointer @system.pointer end |