changeset 94:18316f0638ff

Removed useless file.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 03 Mar 2011 18:30:21 +0200
parents e1d657e6c25b
children 0c59b6048d3c
files Makefile game/SoundElement.java
diffstat 2 files changed, 2 insertions(+), 38 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile	Thu Mar 03 18:21:45 2011 +0200
+++ b/Makefile	Thu Mar 03 18:30:21 2011 +0200
@@ -6,8 +6,8 @@
 CLASSES=game/G.class \
 	game/Piece.class game/PieceType.class \
 	game/Engine.class game/Interpolate.class \
-	game/ResourceLoader.class game/Sound.class \
-	game/SoundElement.class game/SoundManager.class \
+	game/ResourceLoader.class \
+	game/Sound.class game/SoundManager.class \
 	game/IDMPoint.class game/IDMWidget.class \
 	game/IDMButton.class game/IDMContainer.class
 
--- a/game/SoundElement.java	Thu Mar 03 18:21:45 2011 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,36 +0,0 @@
-/*
- * 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;
-    }
-}