Exemplo n.º 1
0
 public static void Init(string clientID, ref DiscordEventHandler handlers, bool autoRegister, string operationalSteamId)
 {
     running = true;
     RPCInitialize(clientID, ref handlers, autoRegister, operationalSteamId);
     loop = new Thread(RunCallbacks);
     loop.Start();
 }
Exemplo n.º 2
0
 private static extern void RPCInitialize(string clientID, ref DiscordEventHandler handlers, bool autoRegister, string operationalSteamId);