An Third-party libraries here means classes zipped in an jar file for others to use.
For example game.jar that is written by other people, and now I want to use some class in it in my scenrio.
Where should I put the jar file? And what should I write in my code to import the classes?
I tried to put it in the folder Greenfoot\userlib\ and import as
import game.*;
but it seems dosen't work.