public class Canvas {
public void erase(){}
}
I want to use that erase method in another class but since it doesn´t appear to be static, I can´t just do this
public class Country {
Canvas.erase();
}
So how do I access that method then?