Added instructions for how to use ISecrets.cs
This commit is contained in:
parent
99b9c52b40
commit
2b9ee795fb
2 changed files with 17 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue