From 9737db1e0e726b811c2260ab97df7cb6ec013140 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Fri, 14 Dec 2001 02:44:10 +0000 Subject: [PATCH] Need this to prevent circumvention (which is not quite as bad as circumcision nor as fun as circumnavigation). git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@777 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- .../spot/client/SpotSceneController.java | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/java/com/threerings/whirled/spot/client/SpotSceneController.java diff --git a/src/java/com/threerings/whirled/spot/client/SpotSceneController.java b/src/java/com/threerings/whirled/spot/client/SpotSceneController.java new file mode 100644 index 000000000..09077d134 --- /dev/null +++ b/src/java/com/threerings/whirled/spot/client/SpotSceneController.java @@ -0,0 +1,18 @@ +// +// $Id: SpotSceneController.java,v 1.1 2001/12/14 02:44:10 mdb Exp $ + +package com.threerings.whirled.spot.client; + +import com.threerings.whirled.client.SceneController; + +/** + * The base spot scene controller class. It is expected that users of the + * Whirled Spot services will extend this controller class when creating + * specialized controllers for their scenes. Presently there are no basic + * scene services provided by this controller, but its existence affords + * the addition of such services should they become necessary in the + * future. + */ +public abstract class SpotSceneController extends SceneController +{ +}