gserver-remake/GServer.Server/Services/ServerListService.cs
2024-05-22 18:21:27 +01:00

24 lines
No EOL
495 B
C#

using GServer.Common.Game.Entities;
namespace GServer.Server.Services;
public class ServerListService
{
public ServerListService()
{
}
public IEnumerable<ServerListing> List()
{
return [
new ServerListing
{
Name = "Smallville",
Description = "A tiny development server!",
IPAddress = "localhost",
Port = 11001,
Playercount = 1,
}
];
}
}