13 lines
274 B
C#
13 lines
274 B
C#
namespace GameServer.Contents.GameMode.Mode_Battle.Manage;
|
|
|
|
public class GameModeTPSTeamDeathMatchData : ITPSMode
|
|
{
|
|
public async Task<Result> initTPSMode()
|
|
{
|
|
var result = new Result();
|
|
|
|
await Task.CompletedTask;
|
|
return result;
|
|
}
|
|
|
|
} |