www.pudn.com > boogiebot.zip > WMOFile.cs
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
namespace BoogieBot.Common
{
/// WMO File. Parses and stores a World Model Object.
public abstract class WMOFile
{
protected MVER mver; // WMO File Version
public WMOFile(String filename)
{
}
//protected abstract void parseFile(MPQFile mpqfile);
// MVER Chunk (WMO Version)
protected struct MVER
{
public UInt32 version;
}
}
}