I wanted to know if it was at all possible to have a jar (coded by me) in some directory use another jar (also coded by me) that is in a different directory.
Example:
Main jar path = C:/My Program/core
Secondary jar path = C:/My Program/lib
It is not a jar with pictures. Kind of like the secondary jar is an API for my program.
Example:
import net.myprogram.api.MyApiClass;
public class MyProgram extends MyApiClass{
......
}