- Joined
 - Jan 23, 2017
 
- Messages
 - 9
 
- Thread Author
 - #1
 
The paint will not show up at all.
I've implemented the PaintListener, added the listener to the onStart
	
	
	
		
	
	
	
		
			
			I've implemented the PaintListener, added the listener to the onStart
		Code:
	
	@Override
public void onStart(String... args) {
    getEventDispatcher().addListener(this);
    setLoopDelay(250, 500);
}
	
		Code:
	
	@Override
public void onPaint(Graphics2D g){
    g.drawString("Test", 100, 100);
}
	





