diff --git a/Common/Config.cs b/Common/Config.cs new file mode 100644 index 0000000..0ef6436 --- /dev/null +++ b/Common/Config.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace FLocal.Common { + + public class Config : FLocal.Core.Config { + + protected Config() : base() { + } + + public static void Init() { + doInit(() => new Config()); + } + + } + +}