using System.IO; using System.Resources; namespace Yavsc.Resources { /// /// Makes possible the code injection /// public class YavscLocalisation : ResourceSet { public YavscLocalisation(string path) : base(path) { } public YavscLocalisation(Stream stream) : base(stream) { } } }