12 lines
327 B
C#
12 lines
327 B
C#
using System;
|
|
using System.IO;
|
|
|
|
namespace XWorld.Server.Gateway.Tests
|
|
{
|
|
internal static class TestGames
|
|
{
|
|
// 前置条件:先运行 build-test-games.sh 生成 Server.Host.Tests/TestGames(本工程复用之)
|
|
public static string Root => Path.Combine(AppContext.BaseDirectory, "TestGames");
|
|
}
|
|
}
|