mod: impl config for api url
All checks were successful
Release Mod / Build (push) Successful in 25s
All checks were successful
Release Mod / Build (push) Successful in 25s
This commit is contained in:
16
Mod/Configuration/PluginConfig.cs
Normal file
16
Mod/Configuration/PluginConfig.cs
Normal file
@ -0,0 +1,16 @@
|
||||
using IPA.Config.Stores;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
[assembly: InternalsVisibleTo(GeneratedStore.AssemblyVisibilityTarget)]
|
||||
namespace ScoreTracker.Configuration
|
||||
{
|
||||
internal class PluginConfig
|
||||
{
|
||||
public static PluginConfig Instance { get; set; }
|
||||
|
||||
/*
|
||||
* The URL of the API to use
|
||||
*/
|
||||
public virtual string ApiUrl { get; set; } = "https://beatsaber.fascinated.cc/api";
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user