Managing lots of Classes?

well i’m working on a game project, in the past i’ve only made small applications so all the classes were in one folder, now i’ve noticed that i have too many classes and its getting difficult to manage, i’m using Eclipse, i have classes like enemies, bullets, goodies, bombs etc,

i was hoping it would be a simple task to just sort them into sub folders but have’nt been able to get that working without going through imports and stuff, whats the best way to do this?

any tips, ideas would be appreciated.

thx

create a new package. Drag your classes into the package you want them to be under, and you’re set :slight_smile:

and you have’ll to import the classes from other packages :stuck_out_tongue:

He said he’s using Eclipse. Eclipse will do that automatically. Any time you use a Move or Rename command, Eclipse will notify everything connected and rename all references accordingly.