mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
15 lines
591 B
C#
15 lines
591 B
C#
using UnityEngine;
|
|
|
|
namespace NewHorizons.OtherMods.OWRichPresence
|
|
{
|
|
public interface IRichPresenceAPI
|
|
{
|
|
public void SetRichPresence(string message, int imageKey);
|
|
public void SetRichPresence(string message, string imageKey);
|
|
public void SetTriggerActivation(bool active);
|
|
public GameObject CreateTrigger(GameObject parent, string message, string imageKey);
|
|
public GameObject CreateTrigger(GameObject parent, Sector sector, string message, string imageKey);
|
|
public void SetCurrentRootPresence(string message, string imageKey);
|
|
}
|
|
}
|