DESKTOP-5RP3AKU\Jisol 0014eff5e0 update
2023-11-05 03:26:09 +08:00

17 lines
383 B
C#

using System;
using System.IO;
using System.Text.Json;
using Luban;
namespace Csharp_Server_DotNetCore
{
class Program
{
static void Main(string[] args)
{
var tables = new cfg.Tables(file => new ByteBuf(File.ReadAllBytes("../../../../GenerateDatas/bytes/" + file + ".bytes")));
Console.WriteLine("== load succ ==");
}
}
}