コード例 #1
0
ファイル: UKeyHook.cs プロジェクト: Duque93/RustInterceptor
 public static UKeyHook getInstance(IKeyEventsListener escuchador)
 {
     if (instance == null)
     {
         instance = new UKeyHook(escuchador);
     }
     return(instance);
 }
コード例 #2
0
ファイル: UKeyHook.cs プロジェクト: Duque93/RustInterceptor
 private UKeyHook(IKeyEventsListener escuchador)
 {
     this.escuchador = escuchador;
     this.action     = new UKeyActions();
     init();
 }