Created a specialization of DObject to use for cluster event dispatch.

This is mainly so that these objects show up as distinct in our DObject
table reports.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1891 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-11-04 22:33:39 +00:00
parent dea46e4cc0
commit 6edc33c6ed
2 changed files with 28 additions and 0 deletions
@@ -0,0 +1,14 @@
//
// $Id: ClusterObject.dobj,v 1.1 2002/11/04 22:33:39 mdb Exp $
package com.threerings.whirled.spot.data;
import com.threerings.presents.dobj.DObject;
/**
* Used to dispatch chat in clusters. Contains no other information at the
* moment.
*/
public class ClusterObject extends DObject
{
}
@@ -0,0 +1,14 @@
//
// $Id: ClusterObject.java,v 1.1 2002/11/04 22:33:39 mdb Exp $
package com.threerings.whirled.spot.data;
import com.threerings.presents.dobj.DObject;
/**
* Used to dispatch chat in clusters. Contains no other information at the
* moment.
*/
public class ClusterObject extends DObject
{
}