ok, so i thought i had figured out packages, but i guess not.
so here’s what i’m trying to do.
i have a player class, with a bunch of supporting classes.
so i want to put them in com.player
now the only class i directly call from my main class is the PlayerClass and then the PlayerClass calls the ControlsClass and a bunch of other classes are under that.
so how do i manage that with packages?
putting them all in the com.player package causes a type not found errror for the PlayerClass (even if i directly import it)
do i need to add import statements to all the classes within a package to import the rest of the package?
are there any tutorials beyond the really basic ones?
ie:
package my.path.foo {
public class MyClass() {
}
}