I'm making my first D3D simple game. My game uses many images.
This is my organization on disc:
MyGame
|
|-Debug
|-Release
|-Assets
|-Others
|-Images
|All cpp and h fiels here
Now. If I lunch my game from VS game is working. But if I launch game from Windows (by clicking exe in Release folder) I get error that my app can't load images. This is because In my app I refere to those images like this "Assets\Images\image.bmp"
How should I organize my project?
Now I have to make copy of Assets folder in Release folder and in main project folder.