mirror of
https://github.com/sp-tarkov/launcher.git
synced 2025-02-13 05:10:45 -05:00
29 lines
496 B
C#
29 lines
496 B
C#
/* ClientConfig.cs
|
|
* License: NCSA Open Source License
|
|
*
|
|
* Copyright: SPT
|
|
* AUTHORS:
|
|
*/
|
|
|
|
|
|
namespace SPT.Launcher
|
|
{
|
|
public class ClientConfig
|
|
{
|
|
public string BackendUrl;
|
|
public string Version;
|
|
|
|
public ClientConfig()
|
|
{
|
|
BackendUrl = "http://127.0.0.1:6969";
|
|
Version = "live";
|
|
}
|
|
|
|
public ClientConfig(string backendUrl)
|
|
{
|
|
BackendUrl = backendUrl;
|
|
Version = "live";
|
|
}
|
|
}
|
|
}
|