package Sartre.Connect4;
import javax.swing.*;
public class ChatGUI extends JDialog {
public ChatGUI(){
setTitle("Chat");
}
}
when i do this in another class in the same package:
ChatGUI chatGUI = new ChatGUI();
i end up with a situation: Cannot Find Symbol
please help?