mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 11:24:46 +00:00
17 lines
383 B
C#
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 ==");
|
||
|
}
|
||
|
}
|
||
|
}
|