CustomPanel.java (403B)
1 /* 2 * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license 3 * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template 4 */ 5 package com.groupproject.tictactoeclient.ContentPanes; 6 7 import javax.swing.JPanel; 8 9 /** 10 * 11 * @author William 12 */ 13 public abstract class CustomPanel extends JPanel { 14 public abstract void refresh(); 15 }