17 lines
279 B
C#
17 lines
279 B
C#
using Fleck;
|
|
using System;
|
|
|
|
|
|
namespace BattleServer
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
Console.WriteLine("BattleServer Start!");
|
|
Service service = new Service();
|
|
Console.ReadKey();
|
|
|
|
}
|
|
}
|
|
} |