Advertisement
Guest User

cube

a guest
Jan 26th, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.33 KB | None | 0 0
  1. package graphics;
  2.  
  3. import java.awt.Color;
  4.  
  5. public class Cube {
  6.     public int width;
  7.     public int height;
  8.     public int x;
  9.     public int y;
  10.     public Color color;
  11.    
  12.     public Cube(int width, int height, Color color, int x, int y){
  13.         this.width = width;
  14.         this.height = height;
  15.         this.x = x;
  16.         this.y = y;
  17.         this.color = color;
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement