How to compress my Resources files

0

I'm developing a Battle-Naval game (I'm still a beginner on programming) and I'm adding some songs and images.

My problem is that this is increasing the size of the project / game too much and it gets in the way.

Is there any way to compress all files to a file and still be able to access them from the code?

For example, the resources I have in Resources I use:

Properties.Resources.exemplo;
    
asked by anonymous 21.10.2014 / 16:15

1 answer

1

One possible suggestion is that you implement a Custom Resource Provider that works as a broker between your files marked as Resources and the points in your application that consume these resources.

This class would be responsible for unpacking the resources before passing them to the rest of the application.

    
21.10.2014 / 18:24