# HG changeset patch # User Matti Hamalainen # Date 1299169821 -7200 # Node ID 18316f0638ffb291fe112d18cbf422107480c909 # Parent e1d657e6c25bb8d729b0bf8c4afbbc84147fcf81 Removed useless file. diff -r e1d657e6c25b -r 18316f0638ff Makefile --- 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 diff -r e1d657e6c25b -r 18316f0638ff game/SoundElement.java --- 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 - */ -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; - } -}