Added instructions for how to use ISecrets.cs

This commit is contained in:
Jeddunk 2021-01-09 22:51:44 +01:00
parent 99b9c52b40
commit 2b9ee795fb
2 changed files with 17 additions and 0 deletions

View file

@ -1,3 +1,19 @@
// Create a "Secrets" class, implement "ISecrets" interface and add your keys:
/*
using System;
namespace GoldbergGUI.Core.Utils
{
public class Secrets : ISecrets
{
public string SteamWebApiKey()
{
return "<ENTER STEAM WEB API KEY HERE>";
}
}
}
*/
namespace GoldbergGUI.Core.Utils
{
public interface ISecrets