18 lines
358 B
Plaintext
18 lines
358 B
Plaintext
|
|
/*
|
||
|
|
文件名:DrawMainCustomUi_Mage.nut
|
||
|
|
路径:DrawMainCustomUi/DrawMainCustomUi_Mage.nut
|
||
|
|
创建日期:2022-09-04 20:20
|
||
|
|
文件用途:女法师界面绘制函数
|
||
|
|
*/
|
||
|
|
function drawMainCustomUI_Mage(obj) {
|
||
|
|
if (!obj)
|
||
|
|
return;
|
||
|
|
drawMainCustomUI_All(obj);
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
function drawCustomUI_Mage(obj) {
|
||
|
|
if (!obj)
|
||
|
|
return;
|
||
|
|
drawCustomUI_All(obj);
|
||
|
|
}
|