15
|
1 // This file (IWarFoundryFileSaver.cs) is a part of the IBBoard.WarFoundry.API project and is copyright 2009 IBBoard.
|
0
|
2 //
|
15
|
3 // The file and the library/program it is in are licensed under the GNU LGPL license, either version 3 of the License or (at your option) any later version. Please see COPYING.LGPL for more information and the full license.
|
0
|
4
|
|
5 using System;
|
|
6 using IBBoard.WarFoundry.API.Objects;
|
|
7
|
|
8 namespace IBBoard.WarFoundry.API.Savers
|
|
9 {
|
|
10 public interface IWarFoundryFileSaver
|
|
11 {
|
|
12 /// <summary>
|
|
13 /// Saves an <see cref="Army"/> to a file on disk.
|
|
14 /// </summary>
|
|
15 /// <param name="army">
|
|
16 /// The <see cref="Army"/> to save
|
|
17 /// </param>
|
|
18 /// <param name="path">
|
|
19 /// The path to save the army to
|
|
20 /// </param>
|
|
21 /// <returns>
|
|
22 /// TRUE if saving succedes, else FALSE
|
|
23 /// </returns>
|
|
24 bool Save(Army army, string path);
|
|
25 }
|
|
26 }
|