I want to create a void like
public void popup( string , int x, int y){}
like when i go in a new room there is a popup with a text.
x and y are the position of my text.


1 2 3 | public void popup(String text, int x, int y) { showText(text, x, y); } |