Advertisement
Guest User

Untitled

a guest
Dec 11th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.21 KB | None | 0 0
  1. import java.awt.*;
  2. import acm.graphics.*;
  3.  
  4. public class GBall extends GOval {
  5.    
  6.     public GBall(int width, int height, Color color) {
  7.         super(width, height);
  8.         setFilled(true);
  9.         setFillColor(color);
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement