Assembly Resources

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am developing a small game in my spare time using .NET. I am curious about using assembly resources as the storage location for my game assets. It seems natural to embed models, textures, sounds, and other assets into the same assembly as the class that governs them. Would this be efficent? Where can I find information on how .NET utilizies assembly resources (not just how to access them from code, but how they work)?
 
Using .NET mean what? You use all the languages in there? Your assembly will
only work with VC++. Have a try in http://msdn.microsoft.com/visualc/

chanmm

Brandon Bloom said:
I am developing a small game in my spare time using .NET. I am curious
about using assembly resources as the storage location for my game assets.
It seems natural to embed models, textures, sounds, and other assets into
the same assembly as the class that governs them. Would this be efficent?
Where can I find information on how .NET utilizies assembly resources (not
just how to access them from code, but how they work)?
 
Using .NET mean what? You use all the languages in there?

The engine is coded with C#, but any .NET language could be used to make extensions to it. All you have to do is reference the engine assembly and then VB.NET, C#, whatever you want can be used. Mixing and matching languages is a feature of .NET, but that has nothing to do with what I am asking.
Your assembly will only work with VC++. Have a try in http://msdn.microsoft.com/visualc/

Assembly resources most definitly work with any .NET language. Where do you think a form's icon goes?
 
Back
Top