screwturn-4/PluginFramework/IResourceExchanger.cs
2009-09-30 13:47:13 +00:00

22 lines
447 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace ScrewTurn.Wiki {
/// <summary>
/// Exposes methods for exchanging Resources.
/// </summary>
public interface IResourceExchanger {
/// <summary>
/// Gets a Resource String.
/// </summary>
/// <param name="name">The Name of the Resource.</param>
/// <returns>The Resource String.</returns>
string GetResource(string name);
}
}