diff --git a/src/as/com/threerings/util/Line.as b/src/as/com/threerings/util/Line.as new file mode 100644 index 000000000..24bd90af7 --- /dev/null +++ b/src/as/com/threerings/util/Line.as @@ -0,0 +1,19 @@ +package com.threerings.util { + +import flash.geom.Point; + +/** + * Merely a typed container for two Points. + */ +public class Line +{ + public var start :Point; + public var stop :Point; + + public function Line (start :Point, stop :Point) + { + this.start = start; + this.stop = stop; + } +} +}