From 5df6f85014397a34993c1d742e23825caa9d3fbb Mon Sep 17 00:00:00 2001 From: Andrzej Kapolka Date: Wed, 10 Sep 2008 00:50:46 +0000 Subject: [PATCH] I don't think anything is using this. I'm moving it so that I can extend it with Clyde-specific bits. git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@652 ed5b42cb-e716-0410-a449-f6a68f950b19 --- .../com/threerings/openal/util/AlContext.java | 23 ------------------- 1 file changed, 23 deletions(-) delete mode 100644 src/java/com/threerings/openal/util/AlContext.java diff --git a/src/java/com/threerings/openal/util/AlContext.java b/src/java/com/threerings/openal/util/AlContext.java deleted file mode 100644 index c2b19931..00000000 --- a/src/java/com/threerings/openal/util/AlContext.java +++ /dev/null @@ -1,23 +0,0 @@ -// -// $Id$ - -package com.threerings.openal.util; - -import com.threerings.openal.ClipProvider; -import com.threerings.openal.SoundManager; - -/** - * Provides access to the various components of the OpenAL sound system. - */ -public interface AlContext -{ - /** - * Returns a reference to the sound manager. - */ - public SoundManager getSoundManager (); - - /** - * Returns a reference to the clip provider. - */ - public ClipProvider getClipProvider (); -}