using LanLib.Singleton; namespace Samples.Singleton { public class Test : Singleton { public void SayHello() { print("hello world"); } } }