Sha256: bf18137b2ada7a225e105cb9dd6b5dc7565638c18f786ae7d959c5c2fba9b6a6
Contents?: true
Size: 328 Bytes
Versions: 13
Compression:
Stored size: 328 Bytes
Contents
# -*- coding: utf-8 -*- module DXRubySDL class SoundEffect def initialize(time, wavetype = WAVE_RECT, resolution = 1000) @time = time @time.times { yield } end def add(wavetype = WAVE_RECT, resolution = 1000) @time.times { yield } end def play end def stop end end end
Version data entries
13 entries across 13 versions & 1 rubygems