More unit assembler progress

This commit is contained in:
Anuken
2021-12-14 09:40:57 -05:00
parent bdc3b85346
commit b5ce9e1a38
9 changed files with 53 additions and 19 deletions

View File

@@ -84,9 +84,9 @@ public class Drawf{
public static void dashRect(Color color, Rect rect){
dashLine(color, rect.x, rect.y, rect.x + rect.width, rect.y);
dashLine(color, rect.x, rect.y, rect.x, rect.y + rect.height);
dashLine(color, rect.x + rect.width, rect.y, rect.x + rect.width, rect.y + rect.height);
dashLine(color, rect.x, rect.y + rect.height, rect.x + rect.width, rect.y + rect.height);
dashLine(color, rect.x + rect.width, rect.y + rect.height, rect.x, rect.y + rect.height);
dashLine(color, rect.x, rect.y + rect.height, rect.x, rect.y);
}
public static void target(float x, float y, float rad, Color color){