view game/Sound.java @ 22:afde253ec705

More work.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 31 Jan 2011 21:28:59 +0200
parents
children 0741dc117808
line wrap: on
line source

/*
 * Ristipolku Game Engine
 * (C) Copyright 2011 Matti 'ccr' Hämäläinen <ccr@tnsp.org>
 */
package game;


public enum Sound
{
    // Music loops
    MUSIC_GAME1	   ("gamemusic.wav",  true),

    // Sound effects
    PIECE_PLACED   ("placed.wav",     false);



    private final String name;
    private final boolean effect;

    Sound(String name, boolean streaming)
    {
        this.name = name;
        this.streaming = streaming;
    }

    public String getName()
    {
        return this.name;
    }
    
    public boolean isStreaming()
    {
        return streaming;
    }
}