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