/* * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Interface.java to edit this template */ package brickbreaker.Interfaces; import brickbreaker.GameComponents.Brick; import java.awt.Color; /** * * @author Suman */ public interface BrickFactory { Brick createBrick(int x, int y, int width, int height, Boolean hasPowerup); }