git-svn-id: svn://svn.ijw.co.nz/svn/OpenRa@1067 993157c7-ee19-0410-b2c4-bb4e9862e678

This commit is contained in:
chrisf
2007-06-23 18:49:41 +00:00
parent cb26bbc491
commit 82a4edc450
2 changed files with 4 additions and 4 deletions

12
OpenRa.Core/IPackage.cs Normal file
View File

@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
namespace OpenRa.Core
{
public interface IPackage
{
Stream GetItem(string filename);
}
}