view game/Sound.java @ 124:fa1b86b632aa

Slight changes in UI buttons placement to match the graphics changes.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 24 Nov 2011 15:29:04 +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;
    }

}