mirror of
https://github.com/rafi1212122/PemukulPaku
synced 2025-12-12 17:34:33 +01:00
20 lines
468 B
C#
20 lines
468 B
C#
using Common.Resources.Proto;
|
|
using Common;
|
|
|
|
namespace PemukulPaku
|
|
{
|
|
class Program
|
|
{
|
|
public static void Main()
|
|
{
|
|
Console.WriteLine("Hello!");
|
|
GetPlayerTokenRsp getPlayerTokenRsp = new()
|
|
{
|
|
Msg = "Hello!"
|
|
};
|
|
Console.WriteLine(Global.config.Gameserver.Host);
|
|
new Thread(HttpServer.Program.Main).Start();
|
|
Console.ReadKey(true);
|
|
}
|
|
}
|
|
} |