Hello,,,
How to make the GUI frame visible? I have looked and this is what I came up with:
Interface gameInterface = new Interface(object1Instance, object2Instance, this)
gameInterface.getFrame().setVisible(true);
is this the way it should be? I have refrained from using a singleton class because I wanted to pass instances of other objects to it, along with an instance of the main class!
any help is much appreciated!
thanks!