Started work on the 'crowd' package.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3935 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2006-03-10 03:05:37 +00:00
parent 3f5aed3555
commit ca66f91ac7
31 changed files with 2650 additions and 57 deletions
+22
View File
@@ -0,0 +1,22 @@
package com.threerings.util {
/**
* Equivalent to java.lang.Integer.
*/
public class Integer
implements Equalable
{
public var value :int;
public function Integer (value :int)
{
this.value = value;
}
// documentation inherited from interface Equalable
public function equals (other :Object) :Boolean
{
return (other is Integer) && (value === (other as Integer).value);
}
}
}