public void update(Collidable source)
 {
     vertices = source.getPolygonVertices();
     indices = source.getPolygonLineList();
 }
 public ColliderDrawer(Game g, Collidable source)
 {
     game = g;
     vertices = source.getPolygonVertices();
     indices = source.getPolygonLineList();
 }