trouble-in-terror-town/Assets/Scripts/Steamworks_Manager.cs
2022-02-09 21:05:18 +01:00

19 lines
429 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Steamworks;
public class Steamworks_Manager : MonoBehaviour
{
// Start is called before the first frame update
public void SetSteamPresance(string valueName, string presanceText)
{
SteamFriends.SetRichPresence(valueName, presanceText);
}
// Update is called once per frame
void Update()
{
}
}