mirror of
https://github.com/djdevin/recnet-plugin.git
synced 2026-09-08 14:41:30 -07:00
26 lines
646 B
C#
26 lines
646 B
C#
using BepInEx;
|
|
using BepInEx.Logging;
|
|
using BepInEx.Unity.IL2CPP;
|
|
using HarmonyLib;
|
|
|
|
namespace CannedNet.Client;
|
|
|
|
[BepInPlugin("lapis.cannednet.client", "CannedNet Client", "1.0.0")]
|
|
public class Plugin : BasePlugin
|
|
{
|
|
private const string PhotonDataUrl = "https://ns.lapis.codes/photon";
|
|
|
|
internal static new ManualLogSource Log;
|
|
|
|
public static string appIdRT;
|
|
public static string appIdVoice;
|
|
public static string appIdChat;
|
|
|
|
public override void Load()
|
|
{
|
|
Log = base.Log;
|
|
Log.LogInfo($"I JUST HIT THE JACKPOTTTT!!!!! YUH YUH YUH!");
|
|
Harmony.CreateAndPatchAll(typeof(Plugin).Assembly);
|
|
}
|
|
}
|