view game/SoundElement.java @ 38:736de7b28701

Non-working sound code ...
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 18 Feb 2011 04:58:42 +0200
parents 0741dc117808
children
line wrap: on
line source

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


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

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



    private final String name;
    private final boolean streaming;

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

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