新增画布类,三联,九宫格控件
This commit is contained in:
24
Tool/Common.nut
Normal file
24
Tool/Common.nut
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
文件名:Common.nut
|
||||
路径:Tool/Common.nut
|
||||
创建日期:2025-10-25 00:05
|
||||
文件用途:工具类
|
||||
*/
|
||||
function print(Object) {
|
||||
switch (typeof Object) {
|
||||
case "table":
|
||||
case "array": {
|
||||
local str = Json.Encode(Object);
|
||||
sq_OutPutTable(str);
|
||||
break;
|
||||
}
|
||||
case "string":
|
||||
case "integer": {
|
||||
output(Object);
|
||||
break;
|
||||
}
|
||||
default:
|
||||
output(Object);
|
||||
break;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user