git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5692 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2009-03-24 21:00:38 +00:00
parent d46acc6bc4
commit 52cedb5bdb
+5
View File
@@ -23,6 +23,11 @@ package com.threerings.util {
public interface Comparable
{
/**
* Compare this object to the other one, and return 0 if they're equal,
* -1 if this object is less than the other, or 1 if this object is greater.
* Note: Please use [-1, 0, 1] to be compatible with flex Sort objects.
*/
function compareTo (other :Object) :int;
}
}