20 lines
390 B
Plaintext
20 lines
390 B
Plaintext
/*
|
|
文件名:DrawMainCustomUi_Swordman.nut
|
|
路径:DrawMainCustomUi/DrawMainCustomUi_Swordman.nut
|
|
创建日期:2022-09-04 20:15
|
|
文件用途:鬼剑士绘制界面回调函数(原生)
|
|
*/
|
|
function drawMainCustomUI_Swordman(obj) {
|
|
if (!obj)
|
|
return;
|
|
drawMainCustomUI_All(obj);
|
|
}
|
|
|
|
|
|
function drawCustomUI_Swordman(obj) {
|
|
if (!obj)
|
|
return;
|
|
drawCustomUI_All(obj);
|
|
}
|
|
|