mirror of
https://github.com/sp-tarkov/launcher.git
synced 2025-02-13 09:50:43 -05:00
30 lines
527 B
C#
30 lines
527 B
C#
|
/* ClientConfig.cs
|
||
|
* License: NCSA Open Source License
|
||
|
*
|
||
|
* Copyright: Merijn Hendriks
|
||
|
* AUTHORS:
|
||
|
* Merijn Hendriks
|
||
|
*/
|
||
|
|
||
|
|
||
|
namespace Aki.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";
|
||
|
}
|
||
|
}
|
||
|
}
|