Accept the new argument.

git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@785 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Par Winzell
2008-12-04 18:23:17 +00:00
parent 91358aa4bf
commit b5443d8088
2 changed files with 2 additions and 2 deletions
@@ -53,7 +53,7 @@ public class DummySceneRepository implements SceneRepository
}
// documentation inherited from interface
public Object loadExtras (int sceneId)
public Object loadExtras (int sceneId, SceneModel model)
throws PersistenceException
{
return null;
@@ -58,7 +58,7 @@ public interface SceneRepository
* Loads optional additional scene data. This data is loaded during the scene resolution
* process and made available to the scene manager via {@link SceneManager#gotSceneData}.
*/
public Object loadExtras (int sceneId)
public Object loadExtras (int sceneId, SceneModel model)
throws PersistenceException;
/**