view game/Sound.java @ 86:454a9fcd13ca

Turn antialiasing rendering hints on only for the needed elements to improve rendering speed and CPU usage.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 03 Mar 2011 16:33:02 +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;
    }

}