Hi
By default CodeBlocks seperates all of the header files and source files into seperate virtual folders, sort like this:
Project Name
+ Sources
|  + MyFolder
|  |  + DatFile.cpp
|  + Game.cpp
|  + Main.cpp 
|  + MyClass.cpp
|
+ Headers
   + MyFolder
   |  + DatFile.h
   + Game.h
   + Main.h
   + MyClass.h
This is fine if you have a very small project, but, atleast to me, super annoying when your project starts growing and you have alot more files and folders to juggle around with.
Therefore I would like to ask if there's a way to undo that, so you get an organization more along these lines:
Project Name
+ MyFolder
|  + DatFile.h
|  + DatFile.cpp
+ Game.cpp
+ Game.h
+ Main.cpp
+ Main.h
+ MyClass.cpp
+ MyClass.h
That would be alot easier atleast to me, so I anyway of you know how I could do something like that please tell me.
Thanks
mSkull