v3.3.5: very early vault mob impl, only some code in place.

This commit is contained in:
Evan Debenham
2026-01-30 17:13:32 -05:00
parent 5a6083a70b
commit f325c9c557
2 changed files with 144 additions and 0 deletions

View File

@@ -151,6 +151,10 @@ public class PointF {
return (float)Math.atan2( end.y - start.y, end.x - start.x );
}
public static float angle( Point start, Point end ) {
return (float)Math.atan2( end.y - start.y, end.x - start.x );
}
@Override
public boolean equals(Object o) {
if (super.equals(o))