Oops, probably should have committed this lol

This commit is contained in:
2025-09-28 15:29:25 -07:00
parent 02141e09ad
commit 2919aa025f
4 changed files with 69 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
using DiscordRPC;
using UnityEngine;
public class DiscordRPCUpdater : MonoBehaviour
{
public string details;
public string state;
void Awake()
{
if (DiscordRPCHandler.Instance != null) DiscordRPCHandler.Instance.UpdateRPC(details, state);
}
}