much more on data resources loading and bugfixes

This commit is contained in:
codeimp 2007-10-26 13:17:20 +00:00
parent 947bdb59e9
commit eb92d78761
26 changed files with 1162 additions and 182 deletions

View file

@ -106,5 +106,15 @@ namespace CodeImp.DoomBuilder.Data
public virtual ICollection<ImageData> LoadTextures(PatchNames pnames) { return null; }
#endregion
#region ================== Flats
// When implemented, this loads the flats
public virtual ICollection<ImageData> LoadFlats() { return null; }
// When implemented, this returns the flat lump
public virtual Stream GetFlatData(string pname) { return null; }
#endregion
}
}