This commit is contained in:
Anuken
2020-08-04 16:49:20 -04:00
parent b11908f509
commit d9ea17baca
2 changed files with 11 additions and 0 deletions

View File

@@ -18,6 +18,10 @@ public class Trail{
points = new Seq<>(length);
}
public void clear(){
points.clear();
}
public void draw(Color color, float width){
Draw.color(color);