view game/Sound.java @ 49:e6da5c71be28

Add more code to IDM widgets, do preliminary work for integrating them.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 22 Feb 2011 10:52:08 +0200
parents 736de7b28701
children
line wrap: on
line source

package game;

public class Sound {

    private byte[] samples;

    public Sound(byte[] samples)
    {
        this.samples = samples;
    }

    public byte[] getSamples()
    {
        return samples;
    }

}