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 (); -}