Mercurial > repos > IBDev-IBBoard.WarFoundry.API
comparison api/Savers/Xml/WarFoundryXmlFileSaver.cs @ 320:4be289645c4f
Re #324: Add saving of Race and System data to files
* Add skeleton of method for file extensions when saving
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sat, 05 Mar 2011 15:51:24 +0000 |
parents | 7187add280ed |
children | 2ba88d5fb881 |
comparison
equal
deleted
inserted
replaced
319:7187add280ed | 320:4be289645c4f |
---|---|
31 public void AddFile(ZipOutputStream zipStream, WarFoundryLoadedObject obj) | 31 public void AddFile(ZipOutputStream zipStream, WarFoundryLoadedObject obj) |
32 { | 32 { |
33 ZipEntry entry = new ZipEntry(obj.ID); | 33 ZipEntry entry = new ZipEntry(obj.ID); |
34 zipStream.PutNextEntry(entry); | 34 zipStream.PutNextEntry(entry); |
35 } | 35 } |
36 | |
37 public string GetFileExtension (WarFoundryLoadedObject obj) | |
38 { | |
39 return ""; | |
40 } | |
36 } | 41 } |
37 } | 42 } |