public static PS4RemoteSender getinstance()
 {
     // 싱글톤 구현 하기.
     if (_getinstance == null)
     {
         _getinstance = new PS4RemoteSender();
     }
     return(_getinstance);
 }
示例#2
0
 static void Main()
 {
     Application.EnableVisualStyles();
     Application.SetCompatibleTextRenderingDefault(false);
     Application.Run(PS4RemoteSender.getinstance());
 }