I'm writing a Quake3 model loader in C#. I want to fill a struct with the file header data
Here's a tiny segment of the data :
struct MD3Header
{
public int Ident;
public int Version;
public char[] Name; // 64 chars long
}
What's the best way of loading this from a file...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.