17 lines
383 B
C#
Raw Normal View History

2023-11-05 03:26:09 +08:00
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 ==");
}
}
}