package housewithroooms;

/**
 * @author Daniel "3ICE" Berezvai
 */
public class HouseWithRoooms {

  /**
   * @param args the command line arguments
   */
  public static void main(String[] args) {
    House h = new House(new Room("nappali", 0, 0, 10, 12, 1), "én házam");
    h.addRoom(new Room("Konyha", 0, 0, -6, 12, 1));
    h.addRoom(new Room("háló", 0, 12, 10, 20, 1));

    System.out.println("A(z) \"" + h.getName() + "\" területe: " + h.getArea() + " m²");
  }
}
