view game/Sound.java @ 65:dc936dba124e

Set game over-flag correctly, so that we reset everything after a game over situation has occured.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 25 Feb 2011 07:37:38 +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;
    }

}