Localisation

This commit is contained in:
Paul Schneider 2018-03-26 23:18:48 +02:00
commit 757c5ca2ea
23 changed files with 26 additions and 39 deletions

View file

@ -0,0 +1,20 @@
using System.IO;
using System.Resources;
namespace Yavsc.Resources
{
///<summary>
/// Makes possible the code injection
///</summary>
public class YavscLocalisation : ResourceSet
{
public YavscLocalisation(string path) : base(path)
{
}
public YavscLocalisation(Stream stream) : base(stream)
{
}
}
}