I have two packages inside my project, a
and b
.
a
is my "main class" that runs when the program runs but I need to make b
run from a
(if that makes sense).
I'm sure its something along the lines of PackageB.BMain
but I'm not sure.
Edit:
Okay so I've learned a few new things, to start my main project is RevIRC, inside that I have two packages, MainChat and RevIRC, now when I run the program RevIRC is ran, I need to make Mainchat run when RevIRC is ran.
Like I said before I'm sure its something along the lines of RevIRC.MainChat.ChatMain()
but I can't seem to figure it out.