This commit is contained in:
2024-03-18 21:37:40 +08:00
commit c4aef8f3a3
313 changed files with 74071 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
if (!getroottable().rawin("Pack_Control")) Pack_Control <- {}
function Sq_Pack_Control(chunk) {
local Pack_Json = Json_STL("buffer");
Pack_Json.Parse(chunk, 0, false);
local Op = Pack_Json.Get("op");
if (Pack_Control.rawin(Op) == true) {
Pack_Control[Op](chunk);
}
Pack_Json.Delete();
}