This commit is contained in:
nito9999
2026-06-12 15:35:10 -04:00
parent f5716c7160
commit 6706b6f478
60 changed files with 48656 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
using Microsoft.CodeAnalysis.CSharp.Syntax;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FemRec2023.Classes
{
public class ServerConfig
{
public static object Bracket => new List<object>();
public static string BaseURL = "https://logan2021.obfacus.com"; // replace with your url
public static int GameVersion = 20230406;
}
}