view MockObjects/FixedFileWarFoundryLoader.cs @ 8:69bf7972c9fd

Re #44 - Fix API tests * Remove unused method
author IBBoard <dev@ibboard.co.uk>
date Sat, 14 Mar 2009 17:11:13 +0000
parents 4222cfa99c78
children
line wrap: on
line source

// This file (FixedFileWarFoundryLoader.cs) is a part of the IBBoard.WarFoundry.API.Tests project and is copyright 2009 IBBoard.
//
// 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.

using System;
using System.IO;
using ICSharpCode.SharpZipLib.Zip;

namespace IBBoard.WarFoundry.API
{
	public class FixedFileWarFoundryLoader : WarFoundryLoader
	{
		private ZipFile zipFile;
		
		public FixedFileWarFoundryLoader(ZipFile zip)
		{
			zipFile = zip;
		}
	}
}