17 lines
436 B
C#
17 lines
436 B
C#
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";
|
|
}
|
|
}
|