basic game

This commit is contained in:
Somebody
2024-05-11 21:58:31 +08:00
parent 0a74bdde9a
commit eaf22af042
1673 changed files with 107324 additions and 117126 deletions

View File

@@ -50,8 +50,13 @@ namespace EggLink.DanhengServer.Configuration
public class DatabaseConfig
{
public string DatabaseType { get; set; } = "sqlite"; // only support sqlite for now
public string DatabaseType { get; set; } = "sqlite";
public string DatabaseName { get; set; } = "danheng.db";
public string MySqlHost { get; set; } = "127.0.0.1";
public int MySqlPort { get; set; } = 3306;
public string MySqlUser { get ; set; } = "root";
public string MySqlPassword { get; set; } = "123456";
public string MySqlDatabase { get; set; } = "danheng";
}
public class ServerOption