Facebook
From Eratic Pheasant, 6 Years ago, written in Java.
Embed
Download Paste or View Raw
Hits: 308
  1. package content;
  2.  
  3. import main.Main;
  4.  
  5. public class Outdoors extends Main {
  6.  
  7.  
  8.     public Outdoors(){
  9.  
  10.     }
  11.  
  12.     public Outdoors(int mat, int id, double price, String name) {
  13.         super(mat, id, price, name);
  14.  
  15.         new Outdoors(mat, id, price, name){
  16.  
  17.         };
  18.     }
  19.  
  20.     static public Outdoors plastering = new Outdoors(0, 1500, 1, "Tynkowanie");
  21.     Outdoors warming = new Outdoors(0, 1501, 1, "Ocieplanie");
  22.     Outdoors bricklaying = new Outdoors(0, 1500, 1, "Murowanie");
  23.     Outdoors layingTiles = new Outdoors(0, 1500, 1, "Kładzenie Płytek");
  24.     Outdoors insulatingTheAttic = new Outdoors(0, 1500, 1, "Ocieplanie poddasza");
  25.     Outdoors concreting = new Outdoors(0, 1500, 1, "Betonowanie");
  26.     Outdoors painting = new Outdoors(0, 1500, 1, "Malowanie");
  27.  
  28.  
  29.  
  30.  
  31. }
  32.